mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 10:54:50 +00:00
small fixes, error handling
This commit is contained in:
@@ -3067,8 +3067,11 @@ public final class MainFrame extends AppRibbonFrame implements ActionListener, T
|
||||
}, new Callback<AsyncResult<Void>>() {
|
||||
|
||||
@Override
|
||||
public void call(AsyncResult<Void> arg1) {
|
||||
public void call(AsyncResult<Void> result) {
|
||||
setSourceTask = null;
|
||||
if (result.error != null) {
|
||||
abcPanel.decompiledTextArea.setText("//Decompilation error: " + result.error);
|
||||
}
|
||||
Main.stopWork();
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user