isNodeAncestor keeps returning false even though the value I pass in is an an ancestor node... here is what i am doing:
1. read a key from a HashMap and create a new node 2. before adding the new node (child) to the current node (node), I want to make sure that it is not an ancestor (parent or grandparent, etc..) of the current node. To do this I call:
node.isNodeAncestor(child);
But if always returns false.. my guess is that it is because the child node, even though it may be the same as an ancestor, is not the actual ancestor node.