1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 03:32:16 -05:00

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

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]);