Skip to content

Commit d7a0382

Browse files
committed
Comment on line above
1 parent 7901822 commit d7a0382

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/technology/tabula/CommandLineApp.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,11 @@ private static List<Integer> whichPages(CommandLine line) throws ParseException
224224
}
225225

226226
private static ExtractionMethod whichExtractionMethod(CommandLine line) {
227-
if (line.hasOption('r') || line.hasOption('l')) { // -r/--spreadsheet [deprecated; use -l] or -l/--lattice
227+
// -r/--spreadsheet [deprecated; use -l] or -l/--lattice
228+
if (line.hasOption('r') || line.hasOption('l')) {
228229
return ExtractionMethod.SPREADSHEET;
229230
}
231+
230232
// -n/--no-spreadsheet [deprecated; use -t] or -c/--columns or -g/--guess or -t/--stream
231233
if (line.hasOption('n') || line.hasOption('c') || line.hasOption('g') || line.hasOption('t')) {
232234
return ExtractionMethod.BASIC;

0 commit comments

Comments
 (0)