Need to create a hash map for our marshaller cache.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@914 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-02-02 01:07:20 +00:00
parent c1dcc614f7
commit 373436429d
@@ -1,5 +1,5 @@
//
// $Id: Marshaller.java,v 1.8 2002/02/01 23:32:37 mdb Exp $
// $Id: Marshaller.java,v 1.9 2002/02/02 01:07:20 mdb Exp $
package com.threerings.presents.io;
@@ -175,7 +175,7 @@ public class Marshaller
/** A table of instantiated marshallers for our various marshalled
* classes. */
protected static HashMap _marshcache;
protected static HashMap _marshcache = new HashMap();
/** We use this to sort the fields into a predictable order. */
protected static final FieldComparator FIELD_COMP = new FieldComparator();