mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-09-17 14:21:39 +00:00
Schema changes and ID-based node storage
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2727 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -16,7 +16,6 @@
|
||||
*/
|
||||
package org.alfresco.repo.domain.hibernate;
|
||||
|
||||
import org.alfresco.repo.domain.Node;
|
||||
import org.alfresco.repo.domain.StoreKey;
|
||||
import org.alfresco.repo.domain.VersionCount;
|
||||
|
||||
@@ -50,11 +49,11 @@ public class VersionCountImpl implements VersionCount
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else if (!(obj instanceof Node))
|
||||
else if (!(obj instanceof VersionCount))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
Node that = (Node) obj;
|
||||
VersionCount that = (VersionCount) obj;
|
||||
return (this.getKey().equals(that.getKey()));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user