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
@@ -131,7 +131,7 @@ public abstract class InvocationTask extends Task
public String getArgList (boolean skipFirst)
{
StringBuffer buf = new StringBuffer();
StringBuilder buf = new StringBuilder();
Class[] args = method.getParameterTypes();
for (int ii = skipFirst ? 1 : 0; ii < args.length; ii++) {
if (buf.length() > 0) {
@@ -145,7 +145,7 @@ public abstract class InvocationTask extends Task
public String getWrappedArgList (boolean skipFirst)
{
StringBuffer buf = new StringBuffer();
StringBuilder buf = new StringBuilder();
Class[] args = method.getParameterTypes();
for (int ii = (skipFirst ? 1 : 0); ii < args.length; ii++) {
if (buf.length() > 0) {
@@ -168,7 +168,7 @@ public abstract class InvocationTask extends Task
public String getUnwrappedArgList (boolean listenerMode)
{
StringBuffer buf = new StringBuffer();
StringBuilder buf = new StringBuilder();
Class[] args = method.getParameterTypes();
for (int ii = (listenerMode ? 0 : 1); ii < args.length; ii++) {
if (buf.length() > 0) {