Skip to content

Commit b6c2c59

Browse files
committed
Whitespace
1 parent dc625e2 commit b6c2c59

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/main/java/org/apache/commons/cli/help/TextHelpAppendable.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ public static int indexOfWrap(final CharSequence text, final int width, final in
7979
// handle case of width > text.
8080
// the line ends before the max wrap pos or a new line char found
8181
final int limit = Math.min(startPos + width, text.length() - 1);
82-
8382
for (int idx = startPos; idx < limit; idx++) {
8483
if (BREAK_CHAR_SET.contains(text.charAt(idx))) {
8584
return idx;
@@ -88,7 +87,6 @@ public static int indexOfWrap(final CharSequence text, final int width, final in
8887
if (startPos + width >= text.length()) {
8988
return text.length();
9089
}
91-
9290
int pos;
9391
// look for the last whitespace character before limit
9492
for (pos = limit; pos >= startPos; --pos) {

0 commit comments

Comments
 (0)