diff --git a/src/main/java/org/cryptomator/common/CatchingExecutors.java b/src/main/java/org/cryptomator/common/CatchingExecutors.java index 900f81ec9..d212b2c31 100644 --- a/src/main/java/org/cryptomator/common/CatchingExecutors.java +++ b/src/main/java/org/cryptomator/common/CatchingExecutors.java @@ -77,11 +77,10 @@ public final class CatchingExecutors { } private static void afterExecuteFuture(Future future) { - assert future.isDone(); try { future.get(); } catch (CancellationException ce) { - callHandler(Thread.currentThread(), ce); + //Ignore } catch (ExecutionException ee) { callHandler(Thread.currentThread(), ee.getCause()); } catch (InterruptedException ie) {