Skip to content

Commit

Permalink
Checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
PseudoKnight committed Aug 11, 2019
1 parent dde3854 commit c61bbac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Expand Up @@ -664,7 +664,7 @@ public static class ResultUseException extends RuntimeException {
}
}

public class ArgumentParserResults {
public final class ArgumentParserResults {

List<Argument> arguments = new ArrayList<>();
List<String> unclassified = new ArrayList<>();
Expand Down
Expand Up @@ -194,9 +194,8 @@ public String getModeFromAlias(String alias) {
/**
* A convenience method to get the underlying ArgumentParser based on the mode name given. Aliases will not suffice,
* but you may call getModeFromAlias to resolve the mode name first. Null is returned if no mode exists with that
* name. Useful for perhaps a help mode, to generically display a mode's help. If {
*
* @see mode} is null, null is returned.
* name. Useful for perhaps a help mode, to generically display a mode's help. If {@code mode} is null, null is returned.
*
* @param mode
* @return
*/
Expand Down
Expand Up @@ -10,7 +10,6 @@
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Set;

Expand Down

0 comments on commit c61bbac

Please sign in to comment.