Skip to content

Commit

Permalink
Default diffMaxViolations to Integer.MAX_VALUE in ViolationsTask.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjudd committed Dec 31, 2017
1 parent 6b920c2 commit 435b551
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class ViolationsTask extends DefaultTask {
private SEVERITY diffMinSeverity = INFO;
private File gitRepo = new File(".");
private boolean diffPrintViolations;
private Integer diffMaxViolations;
private Integer diffMaxViolations = Integer.MAX_VALUE;
private ViolationsReporterDetailLevel diffDetailLevel;

public void setMinSeverity(final SEVERITY minSeverity) {
Expand Down

0 comments on commit 435b551

Please sign in to comment.