Skip to content

Commit

Permalink
Fixed wrong parameter in error message
Browse files Browse the repository at this point in the history
Kai Koenig authored and Kai Koenig committed Nov 23, 2016
1 parent e6dc5e6 commit 8441852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/cflint/main/CFLintMain.java
Original file line number Diff line number Diff line change
@@ -456,7 +456,7 @@ private void display(final String text) {

private boolean isValid() {
if (folder.isEmpty() && !stdIn) {
System.err.println("Set -scanFolder or -stdin");
System.err.println("Set -folder or -stdin");
return false;
}
return true;

0 comments on commit 8441852

Please sign in to comment.