mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-10 01:29:38 +02:00
Renamed class.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1841 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
842527ecdb
commit
3d5c656e1f
4 changed files with 6 additions and 147 deletions
|
@ -96,7 +96,7 @@ public abstract class Packet {
|
|||
private String to = null;
|
||||
private String from = null;
|
||||
private Map properties = null;
|
||||
private Error error = null;
|
||||
private XMPPError error = null;
|
||||
|
||||
/**
|
||||
* Returns the unique ID of the packet.
|
||||
|
@ -167,7 +167,7 @@ public abstract class Packet {
|
|||
*
|
||||
* @return the error sub-packet or <tt>null</tt> if there isn't an error.
|
||||
*/
|
||||
public Error getError() {
|
||||
public XMPPError getError() {
|
||||
return error;
|
||||
}
|
||||
|
||||
|
@ -176,7 +176,7 @@ public abstract class Packet {
|
|||
*
|
||||
* @param error the error to associate with this packet.
|
||||
*/
|
||||
public void setError(Error error) {
|
||||
public void setError(XMPPError error) {
|
||||
this.error = error;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue