mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
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/HEAD/root@126616 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();
|
||||
}
|
||||
|
@@ -70,7 +70,7 @@ public class Rendition
|
||||
public String toString()
|
||||
{
|
||||
final StringBuilder sb = new StringBuilder(150);
|
||||
sb.append("Rendition [id='").append(id)
|
||||
sb.append("Rendition [id=").append(id)
|
||||
.append(", status=").append(status)
|
||||
.append(", contentInfo=").append(contentInfo)
|
||||
.append(']');
|
||||
|
Reference in New Issue
Block a user