From ae200a56b008782bd1131c607597ffa47cb9cb94 Mon Sep 17 00:00:00 2001 From: Leijurv Date: Tue, 6 Nov 2018 08:19:26 -0800 Subject: [PATCH] CaPiTaLiZe --- src/api/java/baritone/api/process/PathingCommand.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/api/java/baritone/api/process/PathingCommand.java b/src/api/java/baritone/api/process/PathingCommand.java index 753e1a2d..2caef158 100644 --- a/src/api/java/baritone/api/process/PathingCommand.java +++ b/src/api/java/baritone/api/process/PathingCommand.java @@ -22,7 +22,7 @@ import baritone.api.pathing.goals.Goal; import java.util.Objects; /** - * @author Leijurv + * @author leijurv */ public class PathingCommand { @@ -41,12 +41,11 @@ public class PathingCommand { /** * Create a new {@link PathingCommand}. * - * @see Goal - * @see PathingCommandType - * - * @param goal The target goal, may be {@code null}. + * @param goal The target goal, may be {@code null}. * @param commandType The command type, cannot be {@code null}. * @throws NullPointerException if {@code commandType} is {@code null}. + * @see Goal + * @see PathingCommandType */ public PathingCommand(Goal goal, PathingCommandType commandType) { Objects.requireNonNull(commandType);