(Options options)
| 215 | } |
| 216 | |
| 217 | private JCommander(Options options) { |
| 218 | Objects.requireNonNull(options, "options"); |
| 219 | this.options = options; |
| 220 | if (options.converterInstanceFactories.isEmpty()) { |
| 221 | addConverterFactory(new DefaultConverterFactory()); |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Creates a new un-configured JCommander object. |
nothing calls this directly
no test coverage detected