Browse Source

Merge pull request #116 from greboid/master

Switch unicode notation
pull/117/head
Chris Smith 9 years ago
parent
commit
9fac3bdc0f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/ServerStatus.java

+ 1
- 1
src/com/dmdirc/ServerStatus.java View File

@@ -101,7 +101,7 @@ public class ServerStatus {
101 101
     protected void addHistoryEntry(final ServerState fromState, final ServerState toState) {
102 102
         final StringBuilder builder = new StringBuilder();
103 103
         builder.append(fromState.name());
104
-        builder.append('');
104
+        builder.append('\u2192');
105 105
         builder.append(toState.name());
106 106
         builder.append(' ');
107 107
         builder.append(Thread.currentThread().getStackTrace()[3]);

Loading…
Cancel
Save