The following code does not expect % in the beginning of -c option and fails on "Wrong number syntax":
|
if (line.hasOption('c')) { |
|
this.verticalRulingPositions = parseFloatList(line.getOptionValue('c')); |
|
} |
That piece of code is not needed at all because -c option is already parsed in this piece of code that was already ran:
|
this.tableExtractor = CommandLineApp.createExtractor(line); |
The following code does not expect
%in the beginning of-coption and fails on "Wrong number syntax":tabula-java/src/main/java/technology/tabula/CommandLineApp.java
Lines 59 to 61 in ebc83ac
That piece of code is not needed at all because
-coption is already parsed in this piece of code that was already ran:tabula-java/src/main/java/technology/tabula/CommandLineApp.java
Line 54 in ebc83ac