From 1ce4f4a7e4fa1c22c236c3e340366e847a09a275 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Tue, 13 Jun 2006 23:06:48 +0000 Subject: [PATCH] More StringBuffer -> StringBuilder. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4193 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- tests/src/java/com/threerings/io/StreamableTest.java | 4 ++-- tests/src/java/com/threerings/parlor/TestConfig.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/src/java/com/threerings/io/StreamableTest.java b/tests/src/java/com/threerings/io/StreamableTest.java index 33b06d55e..88048a083 100644 --- a/tests/src/java/com/threerings/io/StreamableTest.java +++ b/tests/src/java/com/threerings/io/StreamableTest.java @@ -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); diff --git a/tests/src/java/com/threerings/parlor/TestConfig.java b/tests/src/java/com/threerings/parlor/TestConfig.java index 741e01726..384306b4c 100644 --- a/tests/src/java/com/threerings/parlor/TestConfig.java +++ b/tests/src/java/com/threerings/parlor/TestConfig.java @@ -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);