]> source.dussan.org Git - poi.git/commitdiff
compile issue
authorPJ Fanning <fanningpj@apache.org>
Tue, 2 Nov 2021 15:03:42 +0000 (15:03 +0000)
committerPJ Fanning <fanningpj@apache.org>
Tue, 2 Nov 2021 15:03:42 +0000 (15:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894688 13f79535-47bb-0310-9956-ffa450edef68

poi-examples/src/main/java/org/apache/poi/examples/xssf/eventusermodel/XLSX2CSV.java

index 272a71a4111d21d0abebb55d78e14cecb48ba281..c411e13ba78309ab00723231cc30861eb0be4f3e 100644 (file)
@@ -255,7 +255,7 @@ public class XLSX2CSV {
             minColumns = Integer.parseInt(args[1]);
 
         // The package open is instantaneous, as it should be.
-        OPCPackage p = OPCPackage.open(xlsxFile.getPath(), PackageAccess.READ)
+        OPCPackage p = OPCPackage.open(xlsxFile.getPath(), PackageAccess.READ);
         try {
             XLSX2CSV xlsx2csv = new XLSX2CSV(p, System.out, minColumns);
             xlsx2csv.process();