Skip to content

Commit 0e1b14d

Browse files
committed
Whitespace
1 parent e15ffc1 commit 0e1b14d

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

src/main/java/org/apache/commons/cli/Option.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -820,28 +820,22 @@ void processValue(final String value) {
820820
if (hasValueSeparator()) {
821821
// get the separator character
822822
final char sep = getValueSeparator();
823-
824823
// store the index for the value separator
825824
int index = add.indexOf(sep);
826-
827825
// while there are more value separators
828826
while (index != -1) {
829827
// next value to be added
830828
if (values.size() == argCount - 1) {
831829
break;
832830
}
833-
834831
// store
835832
add(add.substring(0, index));
836-
837833
// parse
838834
add = add.substring(index + 1);
839-
840835
// get new index
841836
index = add.indexOf(sep);
842837
}
843838
}
844-
845839
// store the actual value or the last value that has been parsed
846840
add(add);
847841
}

0 commit comments

Comments
 (0)