Merge remote-tracking branch

'origin/GP-5982-dragonmacher-symbol-tree-node-equals-npe' (Closes #8502)
This commit is contained in:
Ryan Kurtz 2025-09-10 13:56:21 -04:00
commit eadb23c45a

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;
} }