1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 17:19:39 +02:00

Immutable objects must not implemented TypedCloneable

also add a note about that to the developers documentation.
This commit is contained in:
Florian Schmaus 2015-03-12 13:12:39 +01:00
parent 0b322419ce
commit 41b74ec13c
2 changed files with 20 additions and 6 deletions

View file

@ -19,7 +19,6 @@ package org.jivesoftware.smackx.muc.packet;
import java.io.Serializable;
import org.jivesoftware.smack.packet.NamedElement;
import org.jivesoftware.smack.util.TypedCloneable;
import org.jivesoftware.smack.util.XmlStringBuilder;
import org.jxmpp.jid.BareJid;
@ -30,7 +29,7 @@ import org.jxmpp.jid.BareJid;
*
* @author Gaston Dombiak
*/
public class Destroy implements NamedElement, TypedCloneable<Destroy>, Serializable {
public class Destroy implements NamedElement, Serializable {
/**
*
*/