mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-27 05:44:51 +00:00
Fixed: #2362 Generating error log ExecutionException - InterruptedException log on switching flash/air swc
This commit is contained in:
@@ -276,6 +276,9 @@ public class DecompilerPool {
|
||||
future.cancel(true);
|
||||
throw ex;
|
||||
} catch (ExecutionException ex) {
|
||||
if (ex.getCause() instanceof InterruptedException) {
|
||||
throw (InterruptedException) ex.getCause();
|
||||
}
|
||||
Logger.getLogger(DecompilerPool.class.getName()).log(Level.SEVERE, null, ex);
|
||||
} finally {
|
||||
List<Future<HighlightedText>> futures = openableToFutures.get(openable);
|
||||
|
||||
Reference in New Issue
Block a user