mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-05 15:07:22 +00:00
small fixes, error handling
This commit is contained in:
@@ -392,8 +392,11 @@ public class ActionPanel extends JPanel implements ActionListener {
|
||||
}, new Callback<AsyncResult<Void>>() {
|
||||
|
||||
@Override
|
||||
public void call(AsyncResult<Void> arg1) {
|
||||
public void call(AsyncResult<Void> result) {
|
||||
setSourceTask = null;
|
||||
if (result.error != null) {
|
||||
decompiledEditor.setText("//Decompilation error: " + result.error);
|
||||
}
|
||||
Main.stopWork();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user