mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
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:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user