]> source.dussan.org Git - poi.git/commitdiff
Follow-up fix for r737173 and r737238 (patch 46544) - filename arg was not properly...
authorJosh Micich <josh@apache.org>
Fri, 23 Jan 2009 23:34:22 +0000 (23:34 +0000)
committerJosh Micich <josh@apache.org>
Fri, 23 Jan 2009 23:34:22 +0000 (23:34 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@737248 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/extractor/ExcelExtractor.java

index 8fab2f1072da92ea29b27e015c14738b5a8dd9f8..8bed591c8a22c872749fd2fcf4493db7eccff0ec 100644 (file)
@@ -89,10 +89,11 @@ public class ExcelExtractor extends POIOLE2TextExtractor implements org.apache.p
                                        break;
                                }
                                if ("-i".equals(arg)) {
-                                       arg = args[++i]; // step to next arg
-                                       if (i >= nArgs) {
+                                        // step to next arg
+                                       if (++i >= nArgs) {
                                                throw new CommandParseException("Expected filename after '-i'");
                                        }
+                                       arg = args[i];
                                        if (inputFile != null) {
                                                throw new CommandParseException("Only one input file can be supplied");
                                        }