mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Fixed possible NPE
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@8187 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
3e5cfc0a25
commit
ff2900653c
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ public abstract class Packet {
|
|||
private final List<PacketExtension> packetExtensions
|
||||
= new CopyOnWriteArrayList<PacketExtension>();
|
||||
|
||||
private final Map<String,Object> properties = null;
|
||||
private final Map<String,Object> properties = new HashMap<String, Object>();
|
||||
private XMPPError error = null;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue