mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 09:52:16 -05:00
Optimize Utility.combine for length 1 arguments
This commit is contained in:
parent
47a4bd77ad
commit
844db81b8d
@ -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]);
|
||||
|
Loading…
Reference in New Issue
Block a user