Added field marshaller for int arrays.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@470 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-17 02:56:51 +00:00
parent 1e4d93205d
commit cd39295574
2 changed files with 45 additions and 1 deletions
@@ -1,5 +1,5 @@
//
// $Id: FieldMarshallerRegistry.java,v 1.9 2001/10/17 02:48:11 mdb Exp $
// $Id: FieldMarshallerRegistry.java,v 1.10 2001/10/17 02:56:51 mdb Exp $
package com.threerings.presents.dobj.io;
@@ -84,6 +84,7 @@ public class FieldMarshallerRegistry
registerMarshaller(FloatFieldMarshaller.class);
registerMarshaller(DoubleFieldMarshaller.class);
registerMarshaller(StringFieldMarshaller.class);
registerMarshaller(IntArrayFieldMarshaller.class);
registerMarshaller(StringArrayFieldMarshaller.class);
registerMarshaller(OidListFieldMarshaller.class);
registerMarshaller(DSetFieldMarshaller.class);