mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-23 18:05:32 +00:00
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:
parent
6f60e2190d
commit
a7f73d265d
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user