mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ALF-10132: FSTR is not working
- Fixes some problems with progress tracking and reporting. Still needs some work. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@30503 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -130,4 +130,18 @@ public class TransferProgress
|
||||
this.error = error;
|
||||
}
|
||||
|
||||
public String toString()
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("TransferProgress{status=");
|
||||
sb.append(status);
|
||||
sb.append("; currentPosition=");
|
||||
sb.append(currentPosition);
|
||||
sb.append("; endPosition=");
|
||||
sb.append(endPosition);
|
||||
sb.append("; error={");
|
||||
sb.append(error);
|
||||
sb.append("}}");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user