Presents supports streaming lists natively now, so just use an array list.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5254 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-07-22 15:06:36 +00:00
parent 0a893e1de1
commit dde4e4bfdf
2 changed files with 7 additions and 5 deletions
@@ -21,8 +21,9 @@
package com.threerings.presents.net;
import java.util.List;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.util.StreamableArrayList;
import com.threerings.presents.data.InvocationMarshaller;
@@ -40,5 +41,5 @@ public class BootstrapData extends SimpleStreamableObject
public int clientOid;
/** A list of handles to invocation services. */
public StreamableArrayList<InvocationMarshaller> services;
public List<InvocationMarshaller> services;
}