Removed DbMapping comparison from ESNode.equals().

This is a quick workaround hack to see if this solves
object comparison problems Michi reported on the list.
This commit is contained in:
hns 2001-04-18 14:04:24 +00:00
parent b9aefba787
commit 19dfd14aee

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