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

@ -124,7 +124,7 @@ class AlphabeticalIndexConverter extends IndexConverterHelper {
Misc.getAttribute(source,XMLString.FO_LANGUAGE),
Misc.getAttribute(source, XMLString.FO_COUNTRY)) {
@Override public int compare(AlphabeticalEntry a, AlphabeticalEntry b) {
public int compare(AlphabeticalEntry a, AlphabeticalEntry b) {
return getCollator().compare(a.sWord, b.sWord);
}
};

View file

@ -54,19 +54,19 @@ public class CssDocument implements OutputFile {
sContent = "";
}
@Override public String getFileName() {
public String getFileName() {
return sName;
}
@Override public String getMIMEType() {
public String getMIMEType() {
return "text/css";
}
@Override public boolean isMasterDocument() {
public boolean isMasterDocument() {
return false;
}
@Override public boolean containsMath() {
public boolean containsMath() {
return false;
}

View file

@ -56,23 +56,23 @@ public class ResourceDocument implements OutputFile {
// Implement OutputFile
@Override public String getFileName() {
public String getFileName() {
return sFileName;
}
@Override public String getMIMEType() {
public String getMIMEType() {
return sMediaType;
}
@Override public boolean isMasterDocument() {
public boolean isMasterDocument() {
return false;
}
@Override public boolean containsMath() {
public boolean containsMath() {
return false;
}
@Override public void write(OutputStream os) throws IOException {
public void write(OutputStream os) throws IOException {
os.write(content);
}