Skip to content

Commit 56e7768

Browse files
blicklylauraharker
authored andcommitted
Mark an effectively final field
PiperOrigin-RevId: 721050335
1 parent fbd722a commit 56e7768

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/google/javascript/jscomp/regex/RegExpTree.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class Parser {
113113
int numCapturingGroups;
114114

115115
/** The names of capturing groups in the regex expression */
116-
Set<String> capturingGroupNames = new LinkedHashSet<>();
116+
final Set<String> capturingGroupNames = new LinkedHashSet<>();
117117

118118
/** The length of pattern. */
119119
final int limit = pattern.length();

0 commit comments

Comments
 (0)