Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Dec 10, 2024
1 parent 61cc927 commit 1b23160
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion core/src/main/java/lucee/runtime/reflection/Reflector.java
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ public static boolean isInstaneOfOld(Class src, String trgClassName) {
}

public static boolean isInstaneOf(ClassLoader cl, Class src, String trgClassName) {
long start = System.currentTimeMillis();
Class clazz = ClassUtil.loadClass(cl, trgClassName, null);
if (clazz == null) return false;
return isInstaneOf(src, clazz, false);
Expand Down

0 comments on commit 1b23160

Please sign in to comment.