Fix internal name.

This commit is contained in:
Gary Gregory 2021-08-29 15:52:00 -04:00
parent ed38b62396
commit 817f834802
1 changed files with 5 additions and 5 deletions

View File

@ -39,16 +39,16 @@ public class UncheckedFutureTest {
private static class TestFuture<V> implements Future<V> { private static class TestFuture<V> implements Future<V> {
private final V get; private final V get;
private final Exception executionException; private final Exception exception;
TestFuture(final Exception throwable) { TestFuture(final Exception throwable) {
this.get = null; this.get = null;
this.executionException = throwable; this.exception = throwable;
} }
TestFuture(final V get) { TestFuture(final V get) {
this.get = get; this.get = get;
this.executionException = null; this.exception = null;
} }
@Override @Override
@ -58,8 +58,8 @@ public class UncheckedFutureTest {
@SuppressWarnings("unchecked") // Programming error if call site blows up at runtime. @SuppressWarnings("unchecked") // Programming error if call site blows up at runtime.
private <T extends Exception> void checkExecutionException() throws T { private <T extends Exception> void checkExecutionException() throws T {
if (executionException != null) { if (exception != null) {
throw (T) executionException; throw (T) exception;
} }
} }