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 /bean/com/sun/star | |
parent | 34352e7f1b0fe55da4d1d43921674344ae6deafc (diff) |
java: remove modifiers implied by the context
found by PMD
Change-Id: I04cbf986ddbcffff987784f381b8a9f52f1b3f31
Diffstat (limited to 'bean/com/sun/star')
-rw-r--r-- | bean/com/sun/star/beans/NativeService.java | 6 | ||||
-rw-r--r-- | bean/com/sun/star/comp/beans/NativeService.java | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/bean/com/sun/star/beans/NativeService.java b/bean/com/sun/star/beans/NativeService.java index 85a4b8a81478..9e06e798dcbc 100644 --- a/bean/com/sun/star/beans/NativeService.java +++ b/bean/com/sun/star/beans/NativeService.java @@ -21,7 +21,7 @@ package com.sun.star.beans; /* @deprecated */ /* package */ interface NativeService { - public String getIdentifier(); - public void startupService() throws java.io.IOException; - public int getStartupTime(); + String getIdentifier(); + void startupService() throws java.io.IOException; + int getStartupTime(); } diff --git a/bean/com/sun/star/comp/beans/NativeService.java b/bean/com/sun/star/comp/beans/NativeService.java index fb3a2ef76923..9df62f072976 100644 --- a/bean/com/sun/star/comp/beans/NativeService.java +++ b/bean/com/sun/star/comp/beans/NativeService.java @@ -22,7 +22,7 @@ package com.sun.star.comp.beans; * @deprecated */ interface NativeService { - public String getIdentifier(); - public void startupService() throws java.io.IOException; - public int getStartupTime(); + String getIdentifier(); + void startupService() throws java.io.IOException; + int getStartupTime(); } |