We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7901822 commit d7a0382Copy full SHA for d7a0382
1 file changed
src/main/java/technology/tabula/CommandLineApp.java
@@ -224,9 +224,11 @@ private static List<Integer> whichPages(CommandLine line) throws ParseException
224
}
225
226
private static ExtractionMethod whichExtractionMethod(CommandLine line) {
227
- if (line.hasOption('r') || line.hasOption('l')) { // -r/--spreadsheet [deprecated; use -l] or -l/--lattice
+ // -r/--spreadsheet [deprecated; use -l] or -l/--lattice
228
+ if (line.hasOption('r') || line.hasOption('l')) {
229
return ExtractionMethod.SPREADSHEET;
230
231
+
232
// -n/--no-spreadsheet [deprecated; use -t] or -c/--columns or -g/--guess or -t/--stream
233
if (line.hasOption('n') || line.hasOption('c') || line.hasOption('g') || line.hasOption('t')) {
234
return ExtractionMethod.BASIC;
0 commit comments