Skip to content

Commit

Permalink
[DOC] fix incorrect javadoc @SInCE tag for ArgSpec::root
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Nov 13, 2021
1 parent 4fed17f commit cf2f1fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/picocli/CommandLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -8787,7 +8787,7 @@ private String[] expandVariables(String[] desc) {
/** Returns the root option or positional parameter (on the parent command), if this option or positional parameter was inherited;
* or {@code null} if it was not.
* @see Option#scope()
* @since 4.6.3-SNAPSHOT */
* @since 4.6.0 */
public ArgSpec root() { return root; }

/** Returns the type to convert the option or positional parameter to before {@linkplain #setValue(Object) setting} the value.
Expand Down Expand Up @@ -9425,7 +9425,7 @@ private static String inferLabel(String label, String fieldName, ITypeInfo typeI
/** Returns the root option or positional parameter (on the parent command), if this option or positional parameter was inherited;
* or {@code null} if it was not.
* @see Option#scope()
* @since 4.6.3-SNAPSHOT */
* @since 4.6.0 */
public ArgSpec root() { return root; }

/** Returns the type to convert the option or positional parameter to before {@linkplain #setValue(Object) setting} the value.
Expand Down Expand Up @@ -9568,7 +9568,7 @@ private static String inferLabel(String label, String fieldName, ITypeInfo typeI

/**
* Sets the root object for this inherited option, and returns this builder.
* @since 4.6.3-SNAPSHOT */
* @since 4.6.0 */
public T root(ArgSpec root) { this.root = root ; return self(); }

/** Sets the type to convert the option or positional parameter to before {@linkplain #setValue(Object) setting} the value, and returns this builder.
Expand Down

0 comments on commit cf2f1fe

Please sign in to comment.