We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 316800a commit 71df85eCopy full SHA for 71df85e
test/lib/jdk/test/whitebox/WhiteBox.java
@@ -595,8 +595,8 @@ public boolean waitForReferenceProcessing() throws InterruptedException {
595
try {
596
Method wfrp = getWaitForReferenceProcessingMethod();
597
return (Boolean) wfrp.invoke(null);
598
- } catch (IllegalAccessException t) {
599
- throw new RuntimeException("Shouldn't happen, we call setAccessible()", t);
+ } catch (IllegalAccessException e) {
+ throw new RuntimeException("Shouldn't happen, we call setAccessible()", e);
600
} catch (InvocationTargetException e) {
601
Throwable cause = e.getCause();
602
if (cause instanceof InterruptedException) {
0 commit comments