Skip to content

Commit c3398fa

Browse files
committedMar 22, 2022
Ensure isVirtual is cached
1 parent 54f76b5 commit c3398fa

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed
 

‎src/jdk.jdi/share/classes/com/sun/tools/jdi/ThreadReferenceImpl.java

+4-7
Original file line numberDiff line numberDiff line change
@@ -612,20 +612,17 @@ public boolean isVirtual() {
612612
if (isVirtualCached) {
613613
return isVirtual;
614614
}
615+
boolean result = false;
615616
if (vm.mayCreateVirtualThreads()) {
616-
boolean result;
617617
try {
618618
result = JDWP.ThreadReference.IsVirtual.process(vm, this).isVirtual;
619619
} catch (JDWPException exc) {
620620
throw exc.toJDIException();
621621
}
622-
isVirtual = result;
623-
return result;
624-
} else {
625-
isVirtual = false;
626-
isVirtualCached = true;
627-
return false;
628622
}
623+
isVirtual = result;
624+
isVirtualCached = true;
625+
return result;
629626
}
630627

631628
public String toString() {

0 commit comments

Comments
 (0)
Please sign in to comment.