Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/Trace.java')
-rw-r--r--framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/Trace.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/Trace.java b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/Trace.java
index b6c14f48b..f155f9954 100644
--- a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/Trace.java
+++ b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/Trace.java
@@ -196,11 +196,11 @@ public class Trace {
}
private static String getStringFromByteArray(byte [] bytes) {
- StringBuffer buf = new StringBuffer("[");
+ StringBuffer buf = new StringBuffer("["); //$NON-NLS-1$
for(int i=0; i < bytes.length; i++) {
buf.append(bytes[i]);
- if (i == (bytes.length -1)) buf.append("]");
- else buf.append(",");
+ if (i == (bytes.length -1)) buf.append("]"); //$NON-NLS-1$
+ else buf.append(","); //$NON-NLS-1$
}
return buf.toString();
}

Back to the top