Browse Source

Fix formatting errors introduced in 6864a35fa2

Change-Id: I7ed80c3e353e8f68f97928555e4f6e114a03b755
Reviewed-on: http://gerrit.dmdirc.com/2901
Automatic-Compile: DMDirc Build Manager
Reviewed-by: Greg Holmes <greg@dmdirc.com>
tags/0.8
Shane Mc Cormack 10 years ago
parent
commit
2c47c6ddcb
1 changed files with 11 additions and 8 deletions
  1. 11
    8
      src/com/dmdirc/parser/irc/ProcessTopic.java

+ 11
- 8
src/com/dmdirc/parser/irc/ProcessTopic.java View File

@@ -76,14 +76,17 @@ public class ProcessTopic extends IRCProcessor {
76 76
                     if (iClient != null && iClient.getHostname().isEmpty()) {
77 77
                         iClient.setUserBits(token[0], false);
78 78
                     }
79
-                }   iChannel = getChannel(token[2]);
80
-            if (iChannel == null) {
81
-                return;
82
-            }   iChannel.setTopicTime(System.currentTimeMillis() / 1000);
83
-            if (token[0].charAt(0) == ':') {
84
-                token[0] = token[0].substring(1);
85
-            }   iChannel.setTopicUser(token[0]);
86
-            iChannel.setInternalTopic(token[token.length - 1]);
79
+                }
80
+                iChannel = getChannel(token[2]);
81
+                if (iChannel == null) {
82
+                    return;
83
+                }
84
+                iChannel.setTopicTime(System.currentTimeMillis() / 1000);
85
+                if (token[0].charAt(0) == ':') {
86
+                    token[0] = token[0].substring(1);
87
+                }
88
+                iChannel.setTopicUser(token[0]);
89
+                iChannel.setInternalTopic(token[token.length - 1]);
87 90
                 callChannelTopic(iChannel, false);
88 91
                 break;
89 92
         }

Loading…
Cancel
Save