summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/share
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-13 17:05:54 +0200
committerNoel Grandin <noel@peralex.com>2014-08-20 11:45:28 +0200
commit8c9fdc4a963fd55da59a93c979071f53b84fbc24 (patch)
treee913f69cee6ec9e3e2072f73d58088ae74d2260d /qadevOOo/runner/share
parent34352e7f1b0fe55da4d1d43921674344ae6deafc (diff)
java: remove modifiers implied by the context
found by PMD Change-Id: I04cbf986ddbcffff987784f381b8a9f52f1b3f31
Diffstat (limited to 'qadevOOo/runner/share')
-rw-r--r--qadevOOo/runner/share/ComplexTest.java4
-rw-r--r--qadevOOo/runner/share/CwsDataExchange.java4
-rw-r--r--qadevOOo/runner/share/LogWriter.java12
-rw-r--r--qadevOOo/runner/share/Watcher.java4
4 files changed, 11 insertions, 13 deletions
diff --git a/qadevOOo/runner/share/ComplexTest.java b/qadevOOo/runner/share/ComplexTest.java
index 02abbe099f7e..a7b2412e5685 100644
--- a/qadevOOo/runner/share/ComplexTest.java
+++ b/qadevOOo/runner/share/ComplexTest.java
@@ -22,9 +22,9 @@ package share;
*/
public interface ComplexTest {
- public String[] getTestMethodNames();
+ String[] getTestMethodNames();
- public String getTestObjectName();
+ String getTestObjectName();
}
diff --git a/qadevOOo/runner/share/CwsDataExchange.java b/qadevOOo/runner/share/CwsDataExchange.java
index 3b160a179a24..c59c54c87248 100644
--- a/qadevOOo/runner/share/CwsDataExchange.java
+++ b/qadevOOo/runner/share/CwsDataExchange.java
@@ -30,11 +30,11 @@ public interface CwsDataExchange {
* Retunrs all module names which are added to the specified childworkspace
* @return a String array of all added modules
*/
- public ArrayList<String> getModules();
+ ArrayList<String> getModules();
/**
* Set the test status of cws related UnoAPI tests to the EIS dabase
* @param status the status of the UnoAPI test
*/
- public void setUnoApiCwsStatus(boolean status);
+ void setUnoApiCwsStatus(boolean status);
}
diff --git a/qadevOOo/runner/share/LogWriter.java b/qadevOOo/runner/share/LogWriter.java
index 98e2fc11b71f..9edc95407318 100644
--- a/qadevOOo/runner/share/LogWriter.java
+++ b/qadevOOo/runner/share/LogWriter.java
@@ -23,21 +23,19 @@ public interface LogWriter {
/**
* Method to print
*/
- public void println(String msg);
+ void println(String msg);
/**
* initialization
*
*/
-
- public boolean initialize(share.DescEntry entry, boolean active);
+ boolean initialize(share.DescEntry entry, boolean active);
/**
* will mostly be used by outproducers to sum up
* the information, maybe write them to a db
*/
-
- public boolean summary(share.DescEntry entry);
+ boolean summary(share.DescEntry entry);
/**
@@ -45,7 +43,7 @@ public interface LogWriter {
* @see share.Watcher
* @return the associated <CODE>Watcher</CODE>
*/
- public Object getWatcher();
+ Object getWatcher();
/**
* Set a <CODE>Watcher</CODE> to the <CODE>LogWriter</CODE>
@@ -54,6 +52,6 @@ public interface LogWriter {
* @see share.Watcher
* @param watcher the new <CODE>Watcher</CODE>
*/
- public void setWatcher(Object watcher);
+ void setWatcher(Object watcher);
}
diff --git a/qadevOOo/runner/share/Watcher.java b/qadevOOo/runner/share/Watcher.java
index d5780b0e9f3e..07e8e6562404 100644
--- a/qadevOOo/runner/share/Watcher.java
+++ b/qadevOOo/runner/share/Watcher.java
@@ -23,11 +23,11 @@ public interface Watcher {
/**
* pings the watcher to check for changes
*/
- public void ping();
+ void ping();
/**
* returns the amount of pings
*/
- public int getPing();
+ int getPing();
}