mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-10 14:16:00 +01:00
A null type is equivalent to GET.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2173 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
7d7c02b750
commit
414f9faef1
1 changed files with 6 additions and 1 deletions
|
@ -88,7 +88,12 @@ public abstract class IQ extends Packet {
|
|||
* @param type the type of the IQ packet.
|
||||
*/
|
||||
public void setType(Type type) {
|
||||
this.type = type;
|
||||
if (type == null) {
|
||||
this.type = Type.GET;
|
||||
}
|
||||
else {
|
||||
this.type = type;
|
||||
}
|
||||
}
|
||||
|
||||
public String toXML() {
|
||||
|
|
Loading…
Reference in a new issue