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:
parent
b9aefba787
commit
19dfd14aee
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue