mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-16 12:12:06 +01:00
Make IQ(IQ) constructor protected
This commit is contained in:
parent
e2223254cf
commit
63ba524758
1 changed files with 1 additions and 2 deletions
|
@ -54,8 +54,7 @@ public abstract class IQ extends Stanza implements IqView {
|
||||||
|
|
||||||
private Type type = Type.get;
|
private Type type = Type.get;
|
||||||
|
|
||||||
// TODO: This method should be protected!
|
protected IQ(IQ iq) {
|
||||||
public IQ(IQ iq) {
|
|
||||||
super(iq);
|
super(iq);
|
||||||
type = iq.getType();
|
type = iq.getType();
|
||||||
this.childElementName = iq.childElementName;
|
this.childElementName = iq.childElementName;
|
||||||
|
|
Loading…
Reference in a new issue