Remove erroneous annotations

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@268 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2018-03-04 09:57:38 +00:00
parent 1089c408ea
commit 3d079375d1
16 changed files with 44 additions and 44 deletions

View file

@ -69,24 +69,24 @@ public class EPUBWriter implements OutputFile {
// Implement OutputFile
@Override public String getFileName() {
public String getFileName() {
return sFileName+".epub";
}
@Override public String getMIMEType() {
public String getMIMEType() {
return "application/epub+zip";
}
@Override public boolean isMasterDocument() {
public boolean isMasterDocument() {
return true;
}
@Override public boolean containsMath() {
public boolean containsMath() {
// We don't really care about this
return nVersion==3;
}
@Override public void write(OutputStream os) throws IOException {
public void write(OutputStream os) throws IOException {
ZipOutputStream zos = new ZipOutputStream(os);
// Write uncompressed MIME type as first entry