Skip to content

Commit 04a547a

Browse files
committed
- don't show warning for progress indicator exception (unsupported on Linux)
1 parent 24fc0b1 commit 04a547a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/mediathek/mainwindow/MediathekGui.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -882,8 +882,7 @@ protected void handleDownloadStart(DownloadStartEvent msg) {
882882
try {
883883
progressIndicatorThread = createProgressIndicatorThread();
884884
progressIndicatorThread.start();
885-
} catch (Exception e) {
886-
logger.warn("progressIndicatorThread creation failed", e);
885+
} catch (Exception _) {
887886
}
888887
}
889888
}

0 commit comments

Comments
 (0)