Skip to content

Commit

Permalink
CommandLineApp: disable unused --debug flag
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzido committed Jul 29, 2020
1 parent 82ad2ed commit dbeff6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/technology/tabula/CommandLineApp.java
Expand Up @@ -315,7 +315,7 @@ public static Options buildOptions() {
o.addOption("t", "stream", false, "Force PDF to be extracted using stream-mode extraction (if there are no ruling lines separating each cell)");
o.addOption("i", "silent", false, "Suppress all stderr output.");
o.addOption("u", "use-line-returns", false, "Use embedded line returns in cells. (Only in spreadsheet mode.)");
o.addOption("d", "debug", false, "Print detected table areas instead of processing.");
// o.addOption("d", "debug", false, "Print detected table areas instead of processing.");
o.addOption(Option.builder("b")
.longOpt("batch")
.desc("Convert all .pdfs in the provided directory.")
Expand Down

0 comments on commit dbeff6e

Please sign in to comment.