diff --git a/src/helma/framework/core/ESNode.java b/src/helma/framework/core/ESNode.java index 8427ab83..db7e44d5 100644 --- a/src/helma/framework/core/ESNode.java +++ b/src/helma/framework/core/ESNode.java @@ -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; }