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
|
@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;
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue