Skip to content

Commit

Permalink
minor: adhere to sevntu checks
Browse files Browse the repository at this point in the history
  • Loading branch information
kariem committed Dec 4, 2016
1 parent 99f7748 commit cdc74e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public int[] getDefaultTokens() {

@Override
public int[] getAcceptableTokens() {
return new int[]{TokenTypes.ENUM_DEF};
return new int[] {TokenTypes.ENUM_DEF};
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ protected enum NumericType {
/**
* Denotes a binary literal. For example, 0b0011
*/
BINARY;
BINARY,
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,8 @@ private static String getInvalidCommitMessageFormattingError(String commitId,
}

private enum CommitsResolutionMode {
BY_COUNTER, BY_LAST_COMMIT_AUTHOR
BY_COUNTER,
BY_LAST_COMMIT_AUTHOR,
}

private static class RevCommitsPair {
Expand Down

0 comments on commit cdc74e8

Please sign in to comment.