Commented out upstream methods for classes that will never use them.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4367 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -59,18 +59,6 @@ public class ClientObject extends DObject
|
||||
return "(" + getOid() + ")";
|
||||
}
|
||||
|
||||
override public function writeObject (out :ObjectOutputStream) :void
|
||||
{
|
||||
super.writeObject(out);
|
||||
out.writeObject(receivers);
|
||||
}
|
||||
|
||||
override public function readObject (ins :ObjectInputStream) :void
|
||||
{
|
||||
super.readObject(ins);
|
||||
receivers = (ins.readObject() as DSet);
|
||||
}
|
||||
|
||||
// AUTO-GENERATED: METHODS START
|
||||
public function addToReceivers (elem :DSet_Entry) :void
|
||||
{
|
||||
@@ -94,5 +82,17 @@ public class ClientObject extends DObject
|
||||
: (ObjectUtil.copy(value) as DSet);
|
||||
}
|
||||
// AUTO-GENERATED: METHODS END
|
||||
|
||||
// override public function writeObject (out :ObjectOutputStream) :void
|
||||
// {
|
||||
// super.writeObject(out);
|
||||
// out.writeObject(receivers);
|
||||
// }
|
||||
|
||||
override public function readObject (ins :ObjectInputStream) :void
|
||||
{
|
||||
super.readObject(ins);
|
||||
receivers = (ins.readObject() as DSet);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -264,9 +264,10 @@ public class DObject // extends EventDispatcher
|
||||
}
|
||||
|
||||
// documentation inherited from interface Streamable
|
||||
public function writeObject (out :ObjectOutputStream) :void
|
||||
public final function writeObject (out :ObjectOutputStream) :void
|
||||
{
|
||||
out.writeInt(_oid);
|
||||
throw new Error();
|
||||
// out.writeInt(_oid);
|
||||
}
|
||||
|
||||
// documentation inherited from interface Streamable
|
||||
|
||||
@@ -14,12 +14,12 @@ public class AuthResponseData extends DObject
|
||||
* why the authentication failed. */
|
||||
public var code :String;
|
||||
|
||||
// documentation inherited
|
||||
override public function writeObject (out :ObjectOutputStream) :void
|
||||
{
|
||||
super.writeObject(out);
|
||||
out.writeField(code);
|
||||
}
|
||||
// // documentation inherited
|
||||
// override public function writeObject (out :ObjectOutputStream) :void
|
||||
// {
|
||||
// super.writeObject(out);
|
||||
// out.writeField(code);
|
||||
// }
|
||||
|
||||
// documentation inherited
|
||||
override public function readObject (ins :ObjectInputStream) :void
|
||||
|
||||
Reference in New Issue
Block a user