mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 00:40:47 +00:00
Fixed while and/or loops
This commit is contained in:
@@ -20,18 +20,6 @@ import java.util.List;
|
||||
|
||||
public class AndItem extends BinaryOpItem {
|
||||
|
||||
public GraphPart firstPart;
|
||||
|
||||
public GraphPart getFirstPart() {
|
||||
if (leftSide instanceof AndItem) {
|
||||
return ((AndItem) leftSide).getFirstPart();
|
||||
}
|
||||
if (leftSide instanceof OrItem) {
|
||||
return ((OrItem) leftSide).getFirstPart();
|
||||
}
|
||||
return firstPart;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<GraphSourceItemPos> getNeededSources() {
|
||||
List<GraphSourceItemPos> ret = super.getNeededSources();
|
||||
|
||||
Reference in New Issue
Block a user