File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/configuration Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ private PatternUtil() {
34
34
* A check if a pattern contains at least one pair of parentheses meaning
35
35
* that there is at least one capture group. This group must not be empty.
36
36
*/
37
- static final String PATTERN_SINGLE_GROUP = ".*\\ ([^\\ )]+\\ ).*" ;
37
+ private static final String PATTERN_SINGLE_GROUP = ".*\\ ([^\\ )]+\\ ).*" ;
38
38
/**
39
39
* Error string for invalid patterns without a single group. This is passed
40
40
* as a first argument to the constructor of PatternSyntaxException and in
@@ -43,7 +43,7 @@ private PatternUtil() {
43
43
* @see PatternSyntaxException
44
44
* @see #PATTERN_SINGLE_GROUP
45
45
*/
46
- static final String PATTERN_MUST_CONTAIN_GROUP = "The pattern must contain at least one non-empty group -" ;
46
+ private static final String PATTERN_MUST_CONTAIN_GROUP = "The pattern must contain at least one non-empty group -" ;
47
47
48
48
/**
49
49
* Check and compile the bug pattern.
You can’t perform that action at this time.
0 commit comments