diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-13 17:05:54 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-20 11:45:28 +0200 |
commit | 8c9fdc4a963fd55da59a93c979071f53b84fbc24 (patch) | |
tree | e913f69cee6ec9e3e2072f73d58088ae74d2260d /qadevOOo/runner/helper | |
parent | 34352e7f1b0fe55da4d1d43921674344ae6deafc (diff) |
java: remove modifiers implied by the context
found by PMD
Change-Id: I04cbf986ddbcffff987784f381b8a9f52f1b3f31
Diffstat (limited to 'qadevOOo/runner/helper')
-rw-r--r-- | qadevOOo/runner/helper/AppProvider.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/helper/AppProvider.java b/qadevOOo/runner/helper/AppProvider.java index 9e2a726e55c4..e8f77d1f059a 100644 --- a/qadevOOo/runner/helper/AppProvider.java +++ b/qadevOOo/runner/helper/AppProvider.java @@ -27,12 +27,12 @@ public interface AppProvider { /** * Method to get the desired Manager */ - public Object getManager(lib.TestParameters param); + Object getManager(lib.TestParameters param); /** * Method to dispose the desired Manager */ - public boolean disposeManager(lib.TestParameters param); + boolean disposeManager(lib.TestParameters param); /** * Close an office. @@ -41,6 +41,6 @@ public interface AppProvider { * it was running before the test * @return True, if close worked. */ - public boolean closeExistingOffice(lib.TestParameters param, + boolean closeExistingOffice(lib.TestParameters param, boolean closeIfPossible); } |