Skip to content

Commit 4f8117e

Browse files
committed
Javadoc
Add an empty line before a Javadoc comment
1 parent ff13bdd commit 4f8117e

File tree

6 files changed

+9
-0
lines changed

6 files changed

+9
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2626
* @since 1.3
2727
*/
2828
public class AmbiguousOptionException extends UnrecognizedOptionException {
29+
2930
/**
3031
* This exception {@code serialVersionUID}.
3132
*/

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,19 +162,23 @@ public Builder setStripLeadingAndTrailingQuotes(final Boolean stripLeadingAndTra
162162
* @since 1.10.0
163163
*/
164164
public enum NonOptionAction {
165+
165166
/**
166167
* Parsing continues and current token is ignored.
167168
*/
168169
IGNORE,
170+
169171
/**
170172
* Parsing continues and current token is added to command line arguments.
171173
*/
172174
SKIP,
175+
173176
/**
174177
* Parsing will stop and remaining tokens are added to command line arguments.
175178
* Equivalent of {@code stopAtNonOption = true}.
176179
*/
177180
STOP,
181+
178182
/**
179183
* Parsing will abort and exception is thrown.
180184
* Equivalent of {@code stopAtNonOption = false}.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2121
* Thrown when an option requiring an argument is not provided with an argument.
2222
*/
2323
public class MissingArgumentException extends ParseException {
24+
2425
/**
2526
* This exception {@code serialVersionUID}.
2627
*/

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ public B setOptionGroupSeparator(final String optionGroupSeparator) {
181181

182182
/** The comparator for sorting {@link Option} collections */
183183
private final Comparator<Option> comparator;
184+
184185
/**
185186
* The {@link HelpAppendable} that produces the final output.
186187
*/

src/test/java/org/apache/commons/cli/ApplicationTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
4040
*/
4141
@SuppressWarnings("deprecation") // tests some deprecated classes
4242
class ApplicationTest {
43+
4344
/**
4445
* Ant test
4546
*/

src/test/java/org/apache/commons/cli/bug/BugCLI162Test.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
import org.junit.jupiter.api.Test;
3333

3434
class BugCLI162Test {
35+
3536
/** Constant for the line separator. */
3637
private static final String CR = System.lineSeparator();
3738

0 commit comments

Comments
 (0)