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

Chat archiving when running in a cluster. 95% of the work done. Testing is pending.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9305 b35dd754-fafc-0310-a699-88a17e54d16e
parent 43de5552
......@@ -12,7 +12,10 @@ import org.jivesoftware.stringprep.Stringprep;
import org.jivesoftware.stringprep.StringprepException;
import org.jivesoftware.util.cache.ExternalizableUtil;
import java.io.*;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Map;
......@@ -37,7 +40,7 @@ import java.util.Map;
*
* @author Matt Tucker
*/
public class JID implements Comparable<JID>, Serializable, Externalizable {
public class JID implements Comparable<JID>, Externalizable {
// Stringprep operations are very expensive. Therefore, we cache node, domain and
// resource values that have already had stringprep applied so that we can check
......
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