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 cc741cd commit 3402c13Copy full SHA for 3402c13
spring-core/src/main/java/org/springframework/util/concurrent/FutureAdapter.java
@@ -107,12 +107,6 @@ final T adaptInternal(S adapteeResult) throws ExecutionException {
107
this.state = State.FAILURE;
108
throw ex;
109
}
110
- catch (Throwable ex) {
111
- ExecutionException execEx = new ExecutionException(ex);
112
- this.result = execEx;
113
- this.state = State.FAILURE;
114
- throw execEx;
115
- }
116
default:
117
throw new IllegalStateException();
118
0 commit comments