From d718b2000ba61a511940f55e005a4b10d8e930b1 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 2 Aug 2001 05:13:29 +0000 Subject: [PATCH] Register the OidListFieldMarshaller. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@149 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../com/threerings/presents/io/FieldMarshallerRegistry.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/presents/io/FieldMarshallerRegistry.java b/src/java/com/threerings/presents/io/FieldMarshallerRegistry.java index c22f13e54..6a44bad73 100644 --- a/src/java/com/threerings/presents/io/FieldMarshallerRegistry.java +++ b/src/java/com/threerings/presents/io/FieldMarshallerRegistry.java @@ -1,5 +1,5 @@ // -// $Id: FieldMarshallerRegistry.java,v 1.3 2001/06/11 17:42:20 mdb Exp $ +// $Id: FieldMarshallerRegistry.java,v 1.4 2001/08/02 05:13:29 mdb Exp $ package com.threerings.cocktail.cher.dobj.io; @@ -63,5 +63,6 @@ public class FieldMarshallerRegistry registerMarshaller(FloatFieldMarshaller.class); registerMarshaller(DoubleFieldMarshaller.class); registerMarshaller(StringFieldMarshaller.class); + registerMarshaller(OidListFieldMarshaller.class); } }