Skip to content

Commit

Permalink
Mark an effectively final field
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 721050335
  • Loading branch information
blickly authored and lauraharker committed Jan 31, 2025
1 parent fbd722a commit 56e7768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/google/javascript/jscomp/regex/RegExpTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class Parser {
int numCapturingGroups;

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

/** The length of pattern. */
final int limit = pattern.length();
Expand Down

0 comments on commit 56e7768

Please sign in to comment.