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

@ -81,19 +81,19 @@ public class LaTeXDocument implements OutputFile {
*
* @return The <code>Document</code> name with file extension.
*/
@Override public String getFileName() {
public String getFileName() {
return new String(sName + FILE_EXTENSION);
}
@Override public String getMIMEType() {
public String getMIMEType() {
return MIMETypes.LATEX;
}
@Override public boolean isMasterDocument() {
public boolean isMasterDocument() {
return bIsMaster;
}
@Override public boolean containsMath() {
public boolean containsMath() {
// We don't use this information currently
return true;
}