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:
parent
0a1740cb4d
commit
b310b05700
|
@ -479,7 +479,7 @@ public class WordUtils {
|
|||
buf[count++] = ch;
|
||||
lastWasGap = false;
|
||||
} else {
|
||||
// ignore ch
|
||||
continue; // ignore ch
|
||||
}
|
||||
}
|
||||
return new String(buf, 0, count);
|
||||
|
|
Loading…
Reference in New Issue