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 11924e5 commit cc0fc99Copy full SHA for cc0fc99
src/main/java/tech/fastj/systems/collections/ManagedList.java
@@ -139,7 +139,7 @@ public void run(Consumer<ArrayList<E>> action) {
139
} catch (ExecutionException exception) {
140
throw new IllegalStateException(exception.getCause());
141
} catch (InterruptedException exception) {
142
- throw new IllegalStateException(exception);
+ Thread.currentThread().interrupt();
143
}
144
145
@@ -172,7 +172,7 @@ public void iterate(Consumer<E> action) {
172
173
174
175
176
177
178
0 commit comments