mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
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:
parent
f40cb8bfbf
commit
469b5c2a0a
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 = "";
|
||||
String type = null;
|
||||
String message = null;
|
||||
String condition = null;
|
||||
List<PacketExtension> extensions = new ArrayList<PacketExtension>();
|
||||
|
|
Loading…
Reference in a new issue