mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 05:20:47 +00:00
improved loop detection
fixed AS1/2 switch
This commit is contained in:
@@ -206,6 +206,9 @@ public class DirectValueTreeItem extends TreeItem {
|
||||
if (obj == null) {
|
||||
return false;
|
||||
}
|
||||
if (!(obj instanceof DirectValueTreeItem)) {
|
||||
return false;
|
||||
}
|
||||
final DirectValueTreeItem other = (DirectValueTreeItem) obj;
|
||||
if (!Objects.equals(this.value, other.value)) {
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user