(String... args)
| 95 | private final String rootDirectory; |
| 96 | |
| 97 | public Bootstrap(String... args) { |
| 98 | this(new PropBootstrapConfiguration(), args); |
| 99 | } |
| 100 | |
| 101 | public Bootstrap(BootstrapConfiguration bootstrapConfiguration, String... args) { |
| 102 | if (args.length < 2) { |
nothing calls this directly
no test coverage detected