Skip to content

Commit f689752

Browse files
committed
Javadoc
1 parent e0f97af commit f689752

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/main/javadoc/overview.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,7 @@ <h2>Creating the Parser</h2>
377377
try {
378378
// parse the command line arguments
379379
CommandLine line = parser.parse(options, args);
380-
}
381-
catch (ParseException exp) {
380+
} catch (ParseException exp) {
382381
// oops, something went wrong
383382
System.err.println("Parsing failed. Reason: " + exp.getMessage());
384383
}
@@ -491,8 +490,7 @@ <h1><img src="org/apache/commons/cli/doc-files/leaf.svg" style="height: 1em; pad
491490
// print the value of block-size
492491
System.out.println(line.getOptionValue("block-size"));
493492
}
494-
}
495-
catch (ParseException exp) {
493+
} catch (ParseException exp) {
496494
System.out.println("Unexpected exception:" + exp.getMessage());
497495
} </code></pre>
498496
</section>

0 commit comments

Comments
 (0)