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

@ -110,23 +110,23 @@ public class BibTeXDocument implements OutputFile {
// Implement writer2latex.api.OutputFile
@Override public String getFileName() {
public String getFileName() {
return new String(sName + FILE_EXTENSION);
}
@Override public String getMIMEType() {
public String getMIMEType() {
return MIMETypes.BIBTEX;
}
@Override public boolean isMasterDocument() {
public boolean isMasterDocument() {
return bIsMaster;
}
@Override public boolean containsMath() {
public boolean containsMath() {
return false;
}
@Override public void write(OutputStream os) throws IOException {
public void write(OutputStream os) throws IOException {
// BibTeX files are plain ascii
OutputStreamWriter osw = new OutputStreamWriter(os,"ASCII");
osw.write("%% This file was converted to BibTeX by Writer2BibTeX ver. "+ConverterFactory.getVersion()+".\n");

View file

@ -47,7 +47,7 @@ public final class Converter extends ConverterBase {
config = new LaTeXConfig();
}
@Override public Config getConfig() {
public Config getConfig() {
return config;
}