Got compiling working under Linux, now correcting various errors.
Checkpoint. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3866 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -5,20 +5,14 @@ import com.threerings.io.ObjectOutputStream;
|
||||
|
||||
public class AuthRequest extends UpstreamMessage
|
||||
{
|
||||
public function AuthRequest ()
|
||||
{
|
||||
super();
|
||||
}
|
||||
|
||||
public function AuthRequest (creds :Credentials, version :String)
|
||||
{
|
||||
super();
|
||||
_creds = creds;
|
||||
_version = version;
|
||||
}
|
||||
|
||||
// documentation inherited
|
||||
public function writeObject (out :ObjectOutputStream) :void
|
||||
public override function writeObject (out :ObjectOutputStream) :void
|
||||
{
|
||||
super.writeObject(out);
|
||||
|
||||
@@ -27,7 +21,7 @@ public class AuthRequest extends UpstreamMessage
|
||||
}
|
||||
|
||||
// documentation inherited
|
||||
public function readObject (ins :ObjectInputStream) :void
|
||||
public override function readObject (ins :ObjectInputStream) :void
|
||||
{
|
||||
super.readObject(ins);
|
||||
_creds = ins.readObject();
|
||||
|
||||
Reference in New Issue
Block a user