You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The help output generated using picocli 4.7.6 lists the options -a, -b, and -c twice:
Usage: exclusivedemo [-hV] (-a=<a> | -b=<b> | -c=<c>)
-a=<a> Use A.
-a=<a> Use A.
-b=<b> Use B.
-b=<b> Use B.
-c=<c> Use C.
-c=<c> Use C.
-h, --help Show this help message and exit.
-V, --version Print version information and exit.
In contrast, picocli 4.7.5 lists them only once:
Usage: exclusivedemo [-hV] (-a=<a> | -b=<b> | -c=<c>)
-a=<a> Use A.
-b=<b> Use B.
-c=<c> Use C.
-h, --help Show this help message and exit.
-V, --version Print version information and exit.
The text was updated successfully, but these errors were encountered:
The following example uses a
@Mixin
in order to import an@ArgGroup
:The help output generated using picocli 4.7.6 lists the options
-a
,-b
, and-c
twice:In contrast, picocli 4.7.5 lists them only once:
The text was updated successfully, but these errors were encountered: