mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
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:
parent
998172b111
commit
819b32ec95
1 changed files with 1 additions and 1 deletions
|
@ -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>();
|
||||
|
|
Loading…
Reference in a new issue