]> source.dussan.org Git - poi.git/commitdiff
fix spelling of quiet
authorPJ Fanning <fanningpj@apache.org>
Thu, 9 Sep 2021 09:19:57 +0000 (09:19 +0000)
committerPJ Fanning <fanningpj@apache.org>
Thu, 9 Sep 2021 09:19:57 +0000 (09:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893171 13f79535-47bb-0310-9956-ffa450edef68

poi-ooxml/src/main/java/org/apache/poi/xslf/util/MFProxy.java
poi-ooxml/src/main/java/org/apache/poi/xslf/util/PPTX2PNG.java

index 5a02c6369588fe3cee1d0a755ae19f4eb3d8fa16..1fd4380ce75d8eca6329a1c7d3c4c14d51246829 100644 (file)
@@ -36,14 +36,14 @@ import org.apache.poi.util.Internal;
 @Internal
 abstract class MFProxy implements Closeable {
     boolean ignoreParse;
-    boolean quite;
+    boolean quiet;
 
     void setIgnoreParse(boolean ignoreParse) {
         this.ignoreParse = ignoreParse;
     }
 
-    void setQuite(boolean quite) {
-        this.quite = quite;
+    void setQuiet(boolean quiet) {
+        this.quiet = quiet;
     }
 
     abstract void parse(File file) throws IOException;
index 4fcab9ed04e219cab29167b167bfa7eae2925b1a..987c177f1f461f0d53b61c3d4ca4a4df2a4156d6 100644 (file)
@@ -466,7 +466,7 @@ public final class PPTX2PNG {
                 break;
         }
         proxy.setIgnoreParse(ignoreParse);
-        proxy.setQuite(quiet);
+        proxy.setQuiet(quiet);
         con.parse(proxy);
         proxy.setDefaultCharset(charset);