Skip to content

Commit

Permalink
checkstyle: use default tokens for WhitespaceAround
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam- committed Jun 18, 2017
1 parent 437e99f commit b1ab29d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@
<property name="message" value="Indent must use tab characters"/>
<property name="ignoreComments" value="true"/>
</module>
<module name="WhitespaceAround">
<property name="tokens" value="LITERAL_IF, LITERAL_ELSE, LITERAL_WHILE, LITERAL_DO, LITERAL_FOR, DO_WHILE"/>
</module>
<module name="WhitespaceAround"/>
</module>
<module name="RegexpMultiline">
<property name="format" value="else[ \t]*[\r\n]+[ \t]*if"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void onExperienceChanged(ExperienceChanged event)
{
startingXp = Experience.getXpForLevel(currentLevel);
}
int goalXp = Experience.getXpForLevel(currentLevel+1);
int goalXp = Experience.getXpForLevel(currentLevel + 1);

int skillIdx = skill.ordinal();
XpGlobe cachedGlobe = globeCache[skillIdx];
Expand Down

0 comments on commit b1ab29d

Please sign in to comment.