fix npes during tests..

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@467685 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-10-25 15:46:07 +00:00
parent aa54a8bec6
commit 4f70250834
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ final public class OpenWireFormat implements WireFormat {
private short nextMarshallCacheIndex=0; private short nextMarshallCacheIndex=0;
private short nextMarshallCacheEvictionIndex=0; private short nextMarshallCacheEvictionIndex=0;
private HashMap marshallCacheMap = new HashMap(); private HashMap marshallCacheMap = new HashMap();
private DataStructure marshallCache[]; private DataStructure marshallCache[] = new DataStructure[MARSHAL_CACHE_SIZE];
private DataStructure unmarshallCache[]; private DataStructure unmarshallCache[] = new DataStructure[MARSHAL_CACHE_SIZE];
private WireFormatInfo preferedWireFormatInfo; private WireFormatInfo preferedWireFormatInfo;