(int idx, String... options)
| 5 | public int _idx; |
| 6 | |
| 7 | public Options(int idx, String... options) { |
| 8 | _options = options; |
| 9 | _idx = idx; |
| 10 | } |
| 11 | |
| 12 | public Options(String... options) { |
| 13 | this(0, options); |
nothing calls this directly
no outgoing calls
no test coverage detected