Browse Source

Fix XMPP plugin for parser changes.

pull/315/head
Greg Holmes 9 years ago
parent
commit
1b4d58ee0e

+ 8
- 0
parser_xmpp/src/com/dmdirc/addons/parser_xmpp/XmppClientInfo.java View File

24
 
24
 
25
 import com.dmdirc.parser.common.AwayState;
25
 import com.dmdirc.parser.common.AwayState;
26
 import com.dmdirc.parser.common.BaseClientInfo;
26
 import com.dmdirc.parser.common.BaseClientInfo;
27
+import com.dmdirc.parser.interfaces.ChannelClientInfo;
28
+
29
+import com.google.common.collect.Lists;
27
 
30
 
28
 import java.util.ArrayList;
31
 import java.util.ArrayList;
29
 import java.util.Collections;
32
 import java.util.Collections;
64
         return 0;
67
         return 0;
65
     }
68
     }
66
 
69
 
70
+    @Override
71
+    public List<ChannelClientInfo> getChannelClients() {
72
+        return Lists.newArrayList();
73
+    }
74
+
67
     /**
75
     /**
68
      * Retrieves the map of known endpoints for this client.
76
      * Retrieves the map of known endpoints for this client.
69
      *
77
      *

Loading…
Cancel
Save