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 /connectivity | |
parent | 34352e7f1b0fe55da4d1d43921674344ae6deafc (diff) |
java: remove modifiers implied by the context
found by PMD
Change-Id: I04cbf986ddbcffff987784f381b8a9f52f1b3f31
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/qa/complex/connectivity/FlatFileAccess.java | 2 | ||||
-rw-r--r-- | connectivity/qa/complex/connectivity/TestCase.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/qa/complex/connectivity/FlatFileAccess.java b/connectivity/qa/complex/connectivity/FlatFileAccess.java index bd2416fd9382..533bfa4a0d72 100644 --- a/connectivity/qa/complex/connectivity/FlatFileAccess.java +++ b/connectivity/qa/complex/connectivity/FlatFileAccess.java @@ -179,7 +179,7 @@ public class FlatFileAccess extends ComplexTestCase private interface RowSetValueGetter { - public Object getValue( final RowSet i_rowSet ) throws SQLException; + Object getValue( final RowSet i_rowSet ) throws SQLException; } private abstract class RowSetColumnValueGetter implements RowSetValueGetter diff --git a/connectivity/qa/complex/connectivity/TestCase.java b/connectivity/qa/complex/connectivity/TestCase.java index 36c80035a010..9261499af5a7 100644 --- a/connectivity/qa/complex/connectivity/TestCase.java +++ b/connectivity/qa/complex/connectivity/TestCase.java @@ -22,6 +22,6 @@ import share.LogWriter; public interface TestCase { - public void assure( final String i_message, final boolean i_condition ); - public LogWriter getLog(); + void assure( final String i_message, final boolean i_condition ); + LogWriter getLog(); } |