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 /odk | |
parent | 34352e7f1b0fe55da4d1d43921674344ae6deafc (diff) |
java: remove modifiers implied by the context
found by PMD
Change-Id: I04cbf986ddbcffff987784f381b8a9f52f1b3f31
Diffstat (limited to 'odk')
3 files changed, 5 insertions, 5 deletions
diff --git a/odk/examples/DevelopersGuide/Config/ConfigExamples.java b/odk/examples/DevelopersGuide/Config/ConfigExamples.java index 5f786fe165f4..2cca38513f99 100644 --- a/odk/examples/DevelopersGuide/Config/ConfigExamples.java +++ b/odk/examples/DevelopersGuide/Config/ConfigExamples.java @@ -435,12 +435,12 @@ public class ConfigExamples // BROWSE example /// Interface to procees information when browsing the configuration tree - public static interface IConfigurationProcessor + public interface IConfigurationProcessor { /// process a value item - public abstract void processValueElement( String sPath_, Object aValue_ ); + void processValueElement( String sPath_, Object aValue_ ); /// process a structural item - public abstract void processStructuralElement( String sPath_, XInterface xElement_); + void processStructuralElement( String sPath_, XInterface xElement_); } /// Internal method to recursively browse a structural element in preorder diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java index 1ad68bb82f4b..ff4bfe4cc65e 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java @@ -64,5 +64,5 @@ public interface IOnewayLink * Note: Atomic types (e.g. int, long) will be transported as objects * too (Integer, Long)! */ - public abstract void execOneway( int nRequest, ArrayList<Object> lParams ); + void execOneway( int nRequest, ArrayList<Object> lParams ); } diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java index de9ac9fa43f2..bd7f3af0de94 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java @@ -41,5 +41,5 @@ */ public interface IShutdownListener { - public abstract void shutdown(); + void shutdown(); } |