StringBuffer -> StringBuilder.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4191 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-06-13 22:42:20 +00:00
parent 3e4ff3564d
commit 79c6427c21
341 changed files with 397 additions and 397 deletions
@@ -1,5 +1,5 @@
//
// $Id: BackedVolatileMirage.java,v 1.3 2004/08/27 02:12:38 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -72,7 +72,7 @@ public class BackedVolatileMirage extends VolatileMirage
}
// documentation inherited
protected void toString (StringBuffer buf)
protected void toString (StringBuilder buf)
{
super.toString(buf);
buf.append(", src=").append(_source);
@@ -1,5 +1,5 @@
//
// $Id: BlankMirage.java,v 1.3 2004/08/27 02:12:38 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -1,5 +1,5 @@
//
// $Id: BufferedMirage.java,v 1.3 2004/08/27 02:12:38 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -1,5 +1,5 @@
//
// $Id: CachedVolatileMirage.java,v 1.5 2004/08/27 02:12:38 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 CachedVolatileMirage extends VolatileMirage
}
// documentation inherited
protected void toString (StringBuffer buf)
protected void toString (StringBuilder buf)
{
super.toString(buf);
buf.append(", key=").append(_source);
@@ -1,5 +1,5 @@
//
// $Id: ColorUtil.java,v 1.5 2004/08/27 02:12:38 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -1,5 +1,5 @@
//
// $Id: Colorization.java,v 1.9 2004/09/29 01:54:14 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -1,5 +1,5 @@
//
// $Id: FastImageIO.java,v 1.3 2004/08/27 02:12:38 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -1,5 +1,5 @@
//
// $Id: ImageDataProvider.java,v 1.3 2004/08/27 02:12:38 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -1,5 +1,5 @@
//
// $Id: Mirage.java,v 1.3 2004/08/27 02:12:38 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -1,5 +1,5 @@
//
// $Id: MirageIcon.java,v 1.2 2004/08/27 02:12:38 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -754,7 +754,7 @@ public class Quantize {
}
public String toString() {
StringBuffer buf = new StringBuffer();
StringBuilder buf = new StringBuilder();
if (parent == this) {
buf.append("root");
} else {
@@ -172,7 +172,7 @@ public abstract class VolatileMirage implements Mirage
*/
public String toString ()
{
StringBuffer buf = new StringBuffer("[");
StringBuilder buf = new StringBuilder("[");
toString(buf);
return buf.append("]").toString();
}
@@ -180,7 +180,7 @@ public abstract class VolatileMirage implements Mirage
/**
* Generates a string representation of this instance.
*/
protected void toString (StringBuffer buf)
protected void toString (StringBuilder buf)
{
buf.append("bounds=").append(StringUtil.toString(_bounds));
}
@@ -1,5 +1,5 @@
//
// $Id: DumpColorPository.java,v 1.2 2004/08/27 02:12:39 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -1,5 +1,5 @@
//
// $Id: ColorPositoryParser.java,v 1.3 2004/08/27 02:12:39 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved