No need to do toString() business any more.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@932 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-02-05 20:27:59 +00:00
parent 80dd2854e8
commit 235537f7d4
@@ -1,5 +1,5 @@
//
// $Id: TestObject.dobj,v 1.5 2001/11/08 02:07:36 mdb Exp $
// $Id: TestObject.dobj,v 1.6 2002/02/05 20:27:59 mdb Exp $
package com.threerings.presents.server;
@@ -46,12 +46,4 @@ public class TestObject extends DObject
{
requestOidRemove(LIST, oid);
}
protected void toString (StringBuffer buf)
{
super.toString(buf);
buf.append(", foo=").append(foo);
buf.append(", bar=").append(bar);
buf.append(", list=").append(list);
}
}