mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merge into HEAD from BRANCHES/V1.3
svn merge svn://www.alfresco.org:3691/alfresco/BRANCHES/V1.3@2997 svn://www.alfresco.org:3691/alfresco/BRANCHES/V1.3@2998 . svn merge svn://www.alfresco.org:3691/alfresco/BRANCHES/V1.3@3003 svn://www.alfresco.org:3691/alfresco/BRANCHES/V1.3@3004 . svn merge svn://www.alfresco.org:3691/alfresco/BRANCHES/V1.3@3009 svn://www.alfresco.org:3691/alfresco/BRANCHES/V1.3@3010 . git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3016 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -782,7 +782,7 @@ public final class Node implements Serializable
|
||||
public void save()
|
||||
{
|
||||
// persist properties back to the node in the DB
|
||||
Map<QName, Serializable> props = new HashMap<QName, Serializable>(this.properties.size());
|
||||
Map<QName, Serializable> props = new HashMap<QName, Serializable>(getProperties().size());
|
||||
for (String key : this.properties.keySet())
|
||||
{
|
||||
Serializable value = (Serializable)this.properties.get(key);
|
||||
@@ -911,9 +911,9 @@ public final class Node implements Serializable
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete this node. Any references to this Node or its NodeRef should be discarded!
|
||||
* Remove this node. Any references to this Node or its NodeRef should be discarded!
|
||||
*/
|
||||
public boolean delete()
|
||||
public boolean remove()
|
||||
{
|
||||
boolean success = false;
|
||||
|
||||
|
Reference in New Issue
Block a user