Missing image resolving support in AbstractWebScript, improvement to video plugin support in FireFox ajax pop-up node panel

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5393 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast 2007-03-15 15:46:50 +00:00
parent 6f60e2190d
commit a7f73d265d

View File

@ -190,12 +190,7 @@ public class Node implements Serializable, Scopeable
if (this == obj) return true;
if (obj == null) return false;
if (getClass() != obj.getClass()) return false;
final Node other = (Node) obj;
if (nodeRef == null)
{
if (other.nodeRef != null) return false;
}
else if (!nodeRef.equals(other.nodeRef)) return false;
if (!nodeRef.equals(((Node)obj).nodeRef)) return false;
return true;
}