Symbol tree bug fix

This commit is contained in:
dragonmacher 2025-08-21 19:49:10 -04:00
parent 7b36c1649f
commit 5af94b1dd4

View file

@ -141,6 +141,9 @@ public class OrganizationNode extends SymbolTreeNode {
if (this == o) { if (this == o) {
return true; return true;
} }
if (o == null) {
return false;
}
if (getClass() != o.getClass()) { if (getClass() != o.getClass()) {
return false; return false;
} }