1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-09-10 18:59:41 +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:
Matt Tucker 2003-03-07 19:47:08 +00:00 committed by mtucker
parent 842527ecdb
commit 3d5c656e1f
4 changed files with 6 additions and 147 deletions

View file

@ -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;
}