mirror of https://github.com/apache/poi.git
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:
parent
ed09bf39bd
commit
7e352f2dbe
|
@ -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;
|
||||
|
|
|
@ -466,7 +466,7 @@ public final class PPTX2PNG {
|
|||
break;
|
||||
}
|
||||
proxy.setIgnoreParse(ignoreParse);
|
||||
proxy.setQuite(quiet);
|
||||
proxy.setQuiet(quiet);
|
||||
con.parse(proxy);
|
||||
proxy.setDefaultCharset(charset);
|
||||
|
||||
|
|
Loading…
Reference in New Issue