From 9ff4149e90e32af13281b8b793d9c7a6bdfdca2c Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Sat, 18 Nov 2006 02:32:17 +0000 Subject: [PATCH] Commented out unneeded client code. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4458 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/crowd/data/OccupantInfo.as | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/as/com/threerings/crowd/data/OccupantInfo.as b/src/as/com/threerings/crowd/data/OccupantInfo.as index 5a51a303f..c8586b6ea 100644 --- a/src/as/com/threerings/crowd/data/OccupantInfo.as +++ b/src/as/com/threerings/crowd/data/OccupantInfo.as @@ -118,10 +118,11 @@ public class OccupantInfo extends SimpleStreamableObject // from interface Streamable override public function writeObject (out :ObjectOutputStream) :void { - super.writeObject(out); - out.writeObject(new Integer(bodyOid)); - out.writeObject(username); - out.writeByte(status); + throw new Error(); +// super.writeObject(out); +// out.writeObject(new Integer(bodyOid)); +// out.writeObject(username); +// out.writeByte(status); } } }