summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/util/StringUtils.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/StringUtils.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/StringUtils.java
index e1567c1864..2fbd12dcc5 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/util/StringUtils.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/StringUtils.java
@@ -480,13 +480,13 @@ public final class StringUtils {
if (strings == null || strings.length == 0) {
return EMPTY;
}
- if (strings.length == 1) {
- return strings[0] == null ? EMPTY : strings[0];
- }
String first = strings[0];
if (first == null) {
return EMPTY;
}
+ if (strings.length == 1) {
+ return first;
+ }
for (int i = 0; i < first.length(); i++) {
char currentChar = first.charAt(i);
for (int j = 1; j < strings.length; j++) {