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:
Alex Wenckus 2007-05-04 18:35:47 +00:00 committed by alex
parent 3e5cfc0a25
commit ff2900653c
1 changed files with 1 additions and 1 deletions

View File

@ -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;
/**