mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Now an abstract class.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2010 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
2aeb58b776
commit
6101d85a00
1 changed files with 2 additions and 4 deletions
|
@ -61,7 +61,7 @@ package org.jivesoftware.smack.packet;
|
|||
*
|
||||
* @author Matt Tucker
|
||||
*/
|
||||
public class IQ extends Packet {
|
||||
public abstract class IQ extends Packet {
|
||||
|
||||
private Type type = Type.GET;
|
||||
|
||||
|
@ -125,9 +125,7 @@ public class IQ extends Packet {
|
|||
*
|
||||
* @return the query section of the IQ XML.
|
||||
*/
|
||||
public String getChildElementXML() {
|
||||
return null;
|
||||
}
|
||||
public abstract String getChildElementXML();
|
||||
|
||||
/**
|
||||
* A class to represent the type of the IQ packet. The types are:
|
||||
|
|
Loading…
Reference in a new issue