Initialization with String no longer needed. Due last changes.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@6341 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Thiago Camargo 2006-12-08 17:48:00 +00:00 committed by thiago
parent f40cb8bfbf
commit 469b5c2a0a
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 = "";
String type = null;
String message = null;
String condition = null;
List<PacketExtension> extensions = new ArrayList<PacketExtension>();