Checkpoint.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3864 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -15,14 +15,14 @@ public class AuthResponseData extends DObject
|
||||
public var code :String;
|
||||
|
||||
// documentation inherited
|
||||
public function writeObject (out :ObjectOutputStream) :void
|
||||
public override function writeObject (out :ObjectOutputStream) :void
|
||||
{
|
||||
super.writeObject(out);
|
||||
out.writeField(code);
|
||||
}
|
||||
|
||||
// documentation inherited
|
||||
public function readObject (ins :ObjectInputStream) :void
|
||||
public override function readObject (ins :ObjectInputStream) :void
|
||||
{
|
||||
super.readObject(ins);
|
||||
code = ins.readField(String);
|
||||
|
||||
@@ -15,12 +15,14 @@ public class Credentials
|
||||
public function writeObject (out :ObjectOutputStream) :void
|
||||
//throws IOError
|
||||
{
|
||||
out.writeObject(_username);
|
||||
}
|
||||
|
||||
// documentation inherited from interface Streamable
|
||||
public function readObject (in :ObjectInputStream) :void
|
||||
public function readObject (ins :ObjectInputStream) :void
|
||||
//throws IOError
|
||||
{
|
||||
_username = ins.readObject();
|
||||
}
|
||||
|
||||
/** The username. */
|
||||
|
||||
@@ -20,7 +20,7 @@ public class PingRequest extends UpstreamMessage
|
||||
}
|
||||
|
||||
// documentation inherited
|
||||
public function writeObject (out :ObjectOutputStream)
|
||||
public override function writeObject (out :ObjectOutputStream)
|
||||
{
|
||||
_packStamp = new Date().getTime();
|
||||
super.writeObject(out);
|
||||
|
||||
@@ -28,7 +28,7 @@ public class PongResponse extends DownstreamMessage
|
||||
return _unpackStamp;
|
||||
}
|
||||
|
||||
public function readObject (ins :ObjectInputStream)
|
||||
public override function readObject (ins :ObjectInputStream)
|
||||
{
|
||||
_unpackStamp = new Date().getTime();
|
||||
super.readObject(ins);
|
||||
|
||||
Reference in New Issue
Block a user