Merge pull request #70 from andrewgaul/combine-one-element

Optimize Utility.combine for length 1 arguments
This commit is contained in:
Andrew Chen 2011-11-01 12:51:44 -07:00
commit 186b65e523
1 changed files with 2 additions and 0 deletions

View File

@ -56,6 +56,8 @@ public class Utility {
return null;
} else if (parts.length == 0) {
return "";
} else if (parts.length == 1) {
return parts[0].toString();
}
StringBuilder sb = new StringBuilder();
sb.append(parts[0]);