Skip to content

Commit 4384414

Browse files
committed
Javadoc clean up
1 parent 89448cf commit 4384414

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

  • src/main/java/org/apache/commons/cli

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ final class Util {
2828
static final String[] EMPTY_STRING_ARRAY = {};
2929

3030
/**
31-
* Remove the leading and trailing quotes from {@code str}. E.g. if str is '"one two"', then 'one two' is returned.
31+
* Removes the leading and trailing quotes from {@code str}. E.g. if str is '"one two"', then 'one two' is returned.
3232
*
3333
* @param str The string from which the leading and trailing quotes should be removed.
34-
*
3534
* @return The string without the leading and trailing quotes.
3635
*/
3736
static String stripLeadingAndTrailingQuotes(String str) {
@@ -44,10 +43,9 @@ static String stripLeadingAndTrailingQuotes(String str) {
4443
}
4544

4645
/**
47-
* Remove the hyphens from the beginning of {@code str} and return the new String.
46+
* Removes the hyphens from the beginning of {@code str} and return the new String.
4847
*
4948
* @param str The string from which the hyphens should be removed.
50-
*
5149
* @return the new String.
5250
*/
5351
static String stripLeadingHyphens(final String str) {

0 commit comments

Comments
 (0)