Making it explicit that the else statement expects to jump to the next iteration of the loop

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1090511 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-04-09 02:16:13 +00:00
parent 0a1740cb4d
commit b310b05700
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ public static String initials(String str, char... delimiters) {
buf[count++] = ch;
lastWasGap = false;
} else {
// ignore ch
continue; // ignore ch
}
}
return new String(buf, 0, count);