summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/graphical/IOffice.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/graphical/IOffice.java')
-rw-r--r--qadevOOo/runner/graphical/IOffice.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/qadevOOo/runner/graphical/IOffice.java b/qadevOOo/runner/graphical/IOffice.java
index 54d8cc24fea4..83094b8aa076 100644
--- a/qadevOOo/runner/graphical/IOffice.java
+++ b/qadevOOo/runner/graphical/IOffice.java
@@ -23,21 +23,21 @@ public interface IOffice
/**
* start an Office, if need
*/
- public void start() throws OfficeException;
+ void start() throws OfficeException;
/**
* Load a document by it's Name
*/
- public void load(String Name) throws OfficeException;
+ void load(String Name) throws OfficeException;
/**
* Create a postscript file in the DOC_COMPARATOR_OUTPUT_DIR directory from a loaded document
*/
- public void storeAsPostscript() throws OfficeException;
+ void storeAsPostscript() throws OfficeException;
/**
* Close the background office
*/
- public void close() throws OfficeException;
+ void close() throws OfficeException;
}