()
| 250 | } |
| 251 | |
| 252 | private static void printHelp(){ |
| 253 | Options opts = getOptions(); |
| 254 | |
| 255 | PrintWriter pw = new PrintWriter(System.err); |
| 256 | new HelpFormatter().printHelp(pw, HelpFormatter.DEFAULT_WIDTH, |
| 257 | "java -jar orc-tools-*.jar data <orc file>*", |
| 258 | null, |
| 259 | opts, |
| 260 | HelpFormatter.DEFAULT_LEFT_PAD, |
| 261 | HelpFormatter.DEFAULT_DESC_PAD, null); |
| 262 | pw.flush(); |
| 263 | } |
| 264 | |
| 265 | static CommandLine parseCommandLine(String[] args) throws ParseException { |
| 266 | Options options = getOptions(); |
no test coverage detected