Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ryaneberly committed May 10, 2016
1 parent d55a51b commit e098fc3
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/main/java/com/cflint/ant/CFLintTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,17 +138,6 @@ public void execute() {
}
}

private String shorten(String includedFile) {
if (includedFile == null) {
return "";
}
includedFile = includedFile.trim();
if (includedFile.length() < 20) {
return includedFile;
}
return ".." + includedFile.substring(includedFile.length() - 20);
}

public void addFileset(final FileSet fileset) {
filesets.add(fileset);
}
Expand Down Expand Up @@ -205,7 +194,4 @@ public void setConfigFile(File configFile) {
this.configFile = configFile;
}

public void setShowStats(final boolean verbose) {
this.showStats = showStats;
}
}

0 comments on commit e098fc3

Please sign in to comment.