diff --git a/tests/src/java/com/threerings/parlor/TestConfig.java b/tests/src/java/com/threerings/parlor/TestConfig.java index e66b4b530..eda282f45 100644 --- a/tests/src/java/com/threerings/parlor/TestConfig.java +++ b/tests/src/java/com/threerings/parlor/TestConfig.java @@ -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);