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
@@ -87,7 +87,7 @@ public abstract class Credentials implements Streamable
*/
public String toString ()
{
StringBuffer buf = new StringBuffer("[");
StringBuilder buf = new StringBuilder("[");
toString(buf);
return buf.append("]").toString();
}
@@ -96,7 +96,7 @@ public abstract class Credentials implements Streamable
* An easily extensible method via which derived classes can add to
* {@link #toString()}'s output.
*/
protected void toString (StringBuffer buf)
protected void toString (StringBuilder buf)
{
buf.append("username=").append(_username);
}