mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-28 13:15:35 +00:00
Ternar operator fix
This commit is contained in:
@@ -426,6 +426,11 @@ public class Graph {
|
||||
if (output.isEmpty()) {
|
||||
return true;
|
||||
}
|
||||
if (output.size() == 1) {
|
||||
if (output.get(0) instanceof MarkItem) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -579,8 +584,9 @@ public class Graph {
|
||||
output.add(new ScriptEndItem());
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
Logger.getLogger(Graph.class.getName()).log(Level.SEVERE, "error during printgraph", ex);
|
||||
return ret;
|
||||
//Logger.getLogger(Graph.class.getName()).log(Level.SEVERE, "error during printgraph", ex);
|
||||
throw ex;
|
||||
//return ret;
|
||||
}
|
||||
}
|
||||
if (part.nextParts.size() == 2) {
|
||||
|
||||
Reference in New Issue
Block a user