mirror of
https://github.com/java-decompiler/jd-gui.git
synced 2024-11-30 07:50:53 +00:00
Catch exception thrown by assert in 'Save All Sources'
This commit is contained in:
parent
074f54742c
commit
fa0a730e51
@ -69,8 +69,8 @@ public class SaveAllSourcesController implements SourcesSavable.Controller, Sour
|
||||
if (cancel) {
|
||||
Files.deleteIfExists(path);
|
||||
}
|
||||
} catch (IOException e) {
|
||||
assert ExceptionUtil.printStackTrace(e);
|
||||
} catch (Throwable t) {
|
||||
assert ExceptionUtil.printStackTrace(t);
|
||||
}
|
||||
|
||||
saveAllSourcesView.hide();
|
||||
|
Loading…
Reference in New Issue
Block a user