Skip to content

Commit

Permalink
no change, just want to compare build time
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Dec 19, 2024
1 parent fc4dd1b commit e1386d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/commons/lang/ClassUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public static Class toClass(PageContext pc, String className) throws ClassExcept
return loadClass(pc, className);
}

private static Class checkPrimaryTypesBytecodeDef(String className, Class defaultValue) {
private static Class checkPrimaryTypesBytecodeDef(String className, Class defaultValue) { // slow
if (className.charAt(0) == '[') {
if (className.equals("[V")) return void.class;
if (className.equals("[Z")) return boolean.class;
Expand Down

0 comments on commit e1386d9

Please sign in to comment.