Merged HEAD (5.2) to 5.2.N (5.2.1)

126616 jkaabimofrad: Merged FILE-FOLDER-API (5.2.0) to HEAD (5.2)
      125219 jkaabimofrad: Fixed minor formatting issue in the toString methods. Also, removed unused imports.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@126961 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Ancuta Morarasu
2016-05-11 12:32:24 +00:00
parent c6e507cb3d
commit 287f92d3ff
5 changed files with 9 additions and 15 deletions

View File

@@ -20,7 +20,6 @@ package org.alfresco.rest.api.model;
import java.util.List;
import org.alfresco.service.cmr.repository.NodeRef;
/**
* Representation of a path info
@@ -63,7 +62,7 @@ public class PathInfo
public String toString()
{
final StringBuilder sb = new StringBuilder(120);
sb.append("PathInfo [name='").append(name)
sb.append("PathInfo [name=").append(name)
.append(", isComplete=").append(isComplete)
.append(", elements=").append(elements)
.append(']');
@@ -101,7 +100,7 @@ public class PathInfo
{
final StringBuilder sb = new StringBuilder(250);
sb.append("PathElement [id=").append(id)
.append(", name='").append(name)
.append(", name=").append(name)
.append(']');
return sb.toString();
}