fix spelling of quiet

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1893171 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-09-09 09:19:57 +00:00
parent ed09bf39bd
commit 7e352f2dbe
2 changed files with 4 additions and 4 deletions

View File

@ -36,14 +36,14 @@ import org.apache.poi.util.Internal;
@Internal @Internal
abstract class MFProxy implements Closeable { abstract class MFProxy implements Closeable {
boolean ignoreParse; boolean ignoreParse;
boolean quite; boolean quiet;
void setIgnoreParse(boolean ignoreParse) { void setIgnoreParse(boolean ignoreParse) {
this.ignoreParse = ignoreParse; this.ignoreParse = ignoreParse;
} }
void setQuite(boolean quite) { void setQuiet(boolean quiet) {
this.quite = quite; this.quiet = quiet;
} }
abstract void parse(File file) throws IOException; abstract void parse(File file) throws IOException;

View File

@ -466,7 +466,7 @@ public final class PPTX2PNG {
break; break;
} }
proxy.setIgnoreParse(ignoreParse); proxy.setIgnoreParse(ignoreParse);
proxy.setQuite(quiet); proxy.setQuiet(quiet);
con.parse(proxy); con.parse(proxy);
proxy.setDefaultCharset(charset); proxy.setDefaultCharset(charset);