Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-04-18 05:54:59 +0000
committerslewis2005-04-18 05:54:59 +0000
commit3b9092a7bf07b75d1b9dd7aa9e34e3e76b2f660a (patch)
tree037edfa973f6b5a8ed129820c6cb4fed6e3af4e5
parenta558813cdbc498e388dc0c92a5c8043b779d6b37 (diff)
downloadorg.eclipse.ecf-3b9092a7bf07b75d1b9dd7aa9e34e3e76b2f660a.tar.gz
org.eclipse.ecf-3b9092a7bf07b75d1b9dd7aa9e34e3e76b2f660a.tar.xz
org.eclipse.ecf-3b9092a7bf07b75d1b9dd7aa9e34e3e76b2f660a.zip
Fixed spacing bug with timestamp on
-rw-r--r--examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ui/LineChatClientView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ui/LineChatClientView.java b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ui/LineChatClientView.java
index 7a571795f..831addd94 100644
--- a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ui/LineChatClientView.java
+++ b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ui/LineChatClientView.java
@@ -204,7 +204,7 @@ public class LineChatClientView implements FileSenderUI {
protected String dateTime() {
StringBuffer sb = new StringBuffer("[");
- sb.append(df.format(new Date())).append("]");
+ sb.append(df.format(new Date())).append("] ");
return sb.toString();
}
@@ -436,7 +436,7 @@ public class LineChatClientView implements FileSenderUI {
public void removeUser(ID id) {
String name = getUserData(id);
if (name != null) {
- final String str = makeChatLine(" " + name + " " + LEFT_STRING);
+ final String str = makeChatLine(name + " " + LEFT_STRING);
showText(new ChatLine(str));
}
myNames.remove(id);

Back to the top