Applied changes from comments.

Co-authored-by: Asgerf <asgerf@github.com>
This commit is contained in:
Napalys
2025-03-10 13:26:15 +01:00
parent f48eab903f
commit 9c8e0a5537
2 changed files with 8 additions and 15 deletions

View File

@@ -71,8 +71,8 @@ public class RegExpParser {
private List<Error> errors;
private List<BackReference> backrefs;
private int maxbackref;
private Boolean vFlagEnabled = false;
private Boolean uFlagEnabled = false;
private boolean vFlagEnabled = false;
private boolean uFlagEnabled = false;
/** Parse the given string as a regular expression. */
public Result parse(String src) {