More StringBuffer -> StringBuilder.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4193 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-06-13 23:06:48 +00:00
parent 6c8b75af98
commit 1ce4f4a7e4
2 changed files with 3 additions and 3 deletions
@@ -1,5 +1,5 @@
//
// $Id: StreamableTest.java,v 1.2 2004/08/27 02:20:57 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -87,7 +87,7 @@ public class StreamableTest extends TestCase
_fizzle = in.readInt();
}
protected void toString (StringBuffer buf)
protected void toString (StringBuilder buf)
{
super.toString(buf);
buf.append(", fizzle=").append(_fizzle);
@@ -49,7 +49,7 @@ public class TestConfig extends GameConfig
return "com.threerings.parlor.test.TestManager";
}
protected void toString (StringBuffer buf)
protected void toString (StringBuilder buf)
{
super.toString(buf);
buf.append(", foozle=").append(foozle);