mirror of https://github.com/apache/activemq.git
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:
parent
aa54a8bec6
commit
4f70250834
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue