Skip to content

Commit

Permalink
Update BooleanExpressionChecker.java
Browse files Browse the repository at this point in the history
fix spelling
  • Loading branch information
ryaneberly committed Oct 11, 2015
1 parent db1b92e commit 1bd2c16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ protected boolean hasExplicitBooleanCheck(final String code) {
public void booleanExpression(final int lineNo, final Context context, final BugList bugs) {
bugs.add(new BugInfo.BugInfoBuilder().setLine(lineNo).setMessageCode("EXPLICIT_BOOLEAN_CHECK")
.setSeverity(severity).setFilename(context.getFilename())
.setMessage("Explict check of boolean expession at " + lineNo + " is not needed.")
.setMessage("Explicit check of boolean expession at " + lineNo + " is not needed.")
.build());
}

Expand Down

0 comments on commit 1bd2c16

Please sign in to comment.