Skip to content

Commit

Permalink
try with faster parser disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Oct 31, 2024
1 parent a4ee913 commit a4af777
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/runtime/op/Caster.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ private Caster() {
}
// static Map calendarsMap=new ReferenceMap(ReferenceMap.SOFT,ReferenceMap.SOFT);

private static final boolean USE_FAST_PARSER = true;
private static final boolean USE_FAST_PARSER = false;
private static final int NUMBERS_MIN = 0;
private static final int NUMBERS_MAX = 999;
private static final String[] NUMBERS = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23",
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/runtime/op/Decision.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
public final class Decision {

private static final String STRING_DEFAULT_VALUE = "this is a unique string";
private static final boolean USE_FAST_PARSER = true;
private static final boolean USE_FAST_PARSER = false;

private static Pattern ssnPattern;
private static Pattern phonePattern;
Expand Down

0 comments on commit a4af777

Please sign in to comment.