Skip to content

Commit

Permalink
Typographic changes [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Dec 30, 2023
1 parent f981750 commit 213817b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/openjax/cli/Option.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public Option(final String name, final String ... values) {
* @return The name.
*/
public String getName() {
return this.name;
return name;
}

/**
Expand All @@ -65,7 +65,7 @@ public String getName() {
* @return The associated values.
*/
public String[] getValues() {
return this.values;
return values;
}

/**
Expand All @@ -74,7 +74,7 @@ public String[] getValues() {
* @return The value separator.
*/
public char getValueSeparator() {
return this.valueSeparator;
return valueSeparator;
}

@Override
Expand Down

0 comments on commit 213817b

Please sign in to comment.