Skip to content

Commit 71df85e

Browse files
committed
t -> e
1 parent 316800a commit 71df85e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/lib/jdk/test/whitebox/WhiteBox.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -595,8 +595,8 @@ public boolean waitForReferenceProcessing() throws InterruptedException {
595595
try {
596596
Method wfrp = getWaitForReferenceProcessingMethod();
597597
return (Boolean) wfrp.invoke(null);
598-
} catch (IllegalAccessException t) {
599-
throw new RuntimeException("Shouldn't happen, we call setAccessible()", t);
598+
} catch (IllegalAccessException e) {
599+
throw new RuntimeException("Shouldn't happen, we call setAccessible()", e);
600600
} catch (InvocationTargetException e) {
601601
Throwable cause = e.getCause();
602602
if (cause instanceof InterruptedException) {

0 commit comments

Comments
 (0)