Commit c20a1c59 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Minor fix.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3754 b35dd754-fafc-0310-a699-88a17e54d16e
parent 76e4be0b
......@@ -1200,6 +1200,9 @@ public class PubSubPersistenceManager {
}
private static Collection<JID> decodeJIDs(String jids) {
if (jids == null) {
return Collections.emptyList();
}
Collection<JID> decodedJIDs = new ArrayList<JID>();
StringTokenizer tokenizer = new StringTokenizer(jids, ",");
while (tokenizer.hasMoreTokens()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment