again compare dbmapping when comparing two ESNodes.

This was temporarily disabled while hunting the compare bug.
This commit is contained in:
hns 2001-05-03 13:27:39 +00:00
parent 0eaf74102b
commit b3c933c74d

View file

@ -513,7 +513,7 @@ public class ESNode extends ObjectPrototype {
return true;
if (what instanceof ESNode) {
ESNode other = (ESNode) what;
return (other.nodeID.equals (nodeID) /* && other.dbmap == dbmap*/ );
return (other.nodeID.equals (nodeID) && other.dbmap == dbmap);
}
return false;
}