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
Positional parameters with index/arity ranges may make some input ambiguous. In the below example, the argument at index 1 could be either a port or a file.
This currently gives picocli.CommandLine$ParameterException: Could not convert 'file1' to int[] for parameter[-1]. (Picocli tries to match options in declared order.)
This requires parsing Strings args which may apply until we encounter one that cannot be converted to the target type.