소스 검색

Modes should default to "" not null

pull/99/head
Shane Mc Cormack 8 년 전
부모
커밋
f0e64e8e98
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      irc/src/com/dmdirc/parser/irc/IRCChannelInfo.java

+ 1
- 1
irc/src/com/dmdirc/parser/irc/IRCChannelInfo.java 파일 보기

@@ -61,7 +61,7 @@ public class IRCChannelInfo implements ChannelInfo {
61 61
     /** Has this channel ever had a topic? */
62 62
     private boolean hadTopic;
63 63
     /** Known boolean-modes for channel. */
64
-    private String modes;
64
+    private String modes = "";
65 65
     /** Reference to the parser object that owns this channel, Used for modes. */
66 66
     private final IRCParser parser;
67 67
     /** Mode manager to use for user modes. */

Loading…
취소
저장