Assigned a default value to the "type" instance variable. SMACK-176

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@5676 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Thiago Camargo 2006-10-10 22:03:22 +00:00 committed by thiago
parent 998172b111
commit 819b32ec95
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ public class PacketParserUtils {
public static XMPPError parseError(XmlPullParser parser) throws Exception {
final String errorNamespace = "urn:ietf:params:xml:ns:xmpp-stanzas";
String errorCode = "-1";
String type = null;
String type = "";
String message = null;
String condition = null;
List<PacketExtension> extensions = new ArrayList<PacketExtension>();