@@ -107,9 +104,6 @@ public class Node implements Cloneable, GraphElement {
returnresult;
}
/**
* Be careful: This equals() implementation considers only the node idetnifier. Use equalsAttributes for a comparison of all attributes or extend this class if you need different behavior
*/
@Override
publicbooleanequals(Objectobj){
if(this==obj)
...
...
@@ -127,18 +121,4 @@ public class Node implements Cloneable, GraphElement {
returntrue;
}
/**
* This clone method creates a new Node object, but uses the same instance
* for id and obj! Override this method if you need different behavior