No need to do this business by hand any longer.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1609 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-07-23 05:55:40 +00:00
parent 0a8d4ad20b
commit a55a36e766
@@ -1,12 +1,8 @@
//
// $Id: TestConfig.java,v 1.3 2001/11/08 02:07:36 mdb Exp $
// $Id: TestConfig.java,v 1.4 2002/07/23 05:55:40 mdb Exp $
package com.threerings.parlor;
import java.io.IOException;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import com.threerings.parlor.game.GameConfig;
public class TestConfig extends GameConfig
@@ -24,22 +20,6 @@ public class TestConfig extends GameConfig
return "com.threerings.parlor.test.TestManager";
}
// documentation inherited
public void writeTo (DataOutputStream out)
throws IOException
{
super.writeTo(out);
out.writeInt(foozle);
}
// documentation inherited
public void readFrom (DataInputStream in)
throws IOException
{
super.readFrom(in);
foozle = in.readInt();
}
protected void toString (StringBuffer buf)
{
super.toString(buf);