diff options
Diffstat (limited to 'bean/com')
-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(); } |