If the given options is empty or specify to print help information, then print help and exit immediately.
(String... args)
| 68 | * then print help and exit immediately. |
| 69 | */ |
| 70 | private static Options processArgs(String... args) { |
| 71 | Options options = Options.parse(args); |
| 72 | if (options.isPrintHelp() || args.length == 0) { |
| 73 | options.printHelp(); |
| 74 | System.exit(0); |
| 75 | } |
| 76 | return options; |
| 77 | } |
| 78 | |
| 79 | private static Plan processConfigs(Options options) { |
| 80 | InputStream content = Configs.getAnalysisConfig(); |
no test coverage detected