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 /framework/qa/complex/imageManager | |
parent | 34352e7f1b0fe55da4d1d43921674344ae6deafc (diff) |
java: remove modifiers implied by the context
found by PMD
Change-Id: I04cbf986ddbcffff987784f381b8a9f52f1b3f31
Diffstat (limited to 'framework/qa/complex/imageManager')
-rw-r--r-- | framework/qa/complex/imageManager/_XUIConfiguration.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/qa/complex/imageManager/_XUIConfiguration.java b/framework/qa/complex/imageManager/_XUIConfiguration.java index fa05dc07f47e..b3076c6077d1 100644 --- a/framework/qa/complex/imageManager/_XUIConfiguration.java +++ b/framework/qa/complex/imageManager/_XUIConfiguration.java @@ -32,11 +32,11 @@ public class _XUIConfiguration { private XUIConfiguration oObj; private XUIConfigurationListenerImpl xListener = null; - public static interface XUIConfigurationListenerImpl + public interface XUIConfigurationListenerImpl extends XUIConfigurationListener { - public void reset(); - public void fireEvent(); - public boolean actionWasTriggered(); + void reset(); + void fireEvent(); + boolean actionWasTriggered(); } |