From a55a36e766c7db4c736e1cb658c89aaf6cb83c69 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 23 Jul 2002 05:55:40 +0000 Subject: [PATCH] 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 --- .../com/threerings/parlor/TestConfig.java | 22 +------------------ 1 file changed, 1 insertion(+), 21 deletions(-) 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);