From 7f8726ee78ed42599b93f935963ce2bfe4d96384 Mon Sep 17 00:00:00 2001 From: Oliver Burn Date: Sun, 21 Jul 2002 12:04:27 +0000 Subject: [PATCH] Changed # parameters to 7 (from 5) and in the process spent more time writing this comment that changing the code. :-) --- .../com/puppycrawl/tools/checkstyle/Configuration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/Configuration.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/Configuration.java index 5d0831092..82bf2bf8f 100644 --- a/src/checkstyle/com/puppycrawl/tools/checkstyle/Configuration.java +++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/Configuration.java @@ -81,7 +81,7 @@ public class Configuration /** the maximum file length **/ private static final int MAX_FILE_LENGTH = 2000; /** the maximum number parameters **/ - private static final int MAX_PARAMETERS = 5; + private static final int MAX_PARAMETERS = 7; /** the set of illegal imports (comma separated package prefixes) **/ private static final String ILLEGAL_IMPORTS = "sun"; /** the set of illegal instantiations (comma separated class names) **/