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:
parent
1089c408ea
commit
3d079375d1
16 changed files with 44 additions and 44 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue