mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-16 02:51:54 +00:00
Fixed #2029 Simplify expressions stripping getlex and also ignoring some types of expressions
This commit is contained in:
@@ -372,7 +372,9 @@ public abstract class GraphTargetItem implements Serializable, Cloneable {
|
||||
|
||||
public boolean isCompileTime() {
|
||||
Set<GraphTargetItem> dependencies = new HashSet<>();
|
||||
dependencies.add(this);
|
||||
if (!((this instanceof SimpleValue) && ((SimpleValue)this).isSimpleValue())) {
|
||||
dependencies.add(this);
|
||||
}
|
||||
return isCompileTime(dependencies);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user