Skip to content

Commit 7006070

Browse files
committedApr 13, 2021
8265061: Simplify MethodHandleNatives::canBeCalledVirtual
Reviewed-by: jvernee, mchung
1 parent 1935655 commit 7006070

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed
 

‎src/java.base/share/classes/java/lang/invoke/MethodHandleNatives.java

+2-5
Original file line numberDiff line numberDiff line change
@@ -667,11 +667,8 @@ static boolean isCallerSensitive(MemberName mem) {
667667

668668
static boolean canBeCalledVirtual(MemberName mem) {
669669
assert(mem.isInvocable());
670-
switch (mem.getName()) {
671-
case "getContextClassLoader":
672-
return canBeCalledVirtual(mem, java.lang.Thread.class);
673-
}
674-
return false;
670+
return mem.getName().equals("getContextClassLoader") &&
671+
canBeCalledVirtual(mem, java.lang.Thread.class);
675672
}
676673

677674
static boolean canBeCalledVirtual(MemberName symbolicRef, Class<?> definingClass) {

0 commit comments

Comments
 (0)
Please sign in to comment.