GP-5982 - Symbol Tree - NPE fix

This commit is contained in:
dragonmacher 2025-09-10 12:43:49 -04:00
parent 5fbb052b28
commit 89b6306aea

View file

@ -277,6 +277,9 @@ public class SymbolNode 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;
} }