summaryrefslogtreecommitdiff
path: root/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java
diff options
context:
space:
mode:
Diffstat (limited to 'javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java')
-rw-r--r--javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java b/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java
index 3df517eec804..550a497018dc 100644
--- a/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java
+++ b/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java
@@ -39,7 +39,7 @@ public class SharedLibraryLoader_Test {
private static XImplementationLoader sharedLibraryLoader = null;
private static XSimpleRegistry simpleRegistry = null;
- static public boolean test_getSharedLibraryLoaderFactory()
+ public static boolean test_getSharedLibraryLoaderFactory()
throws java.lang.Exception
{
sharedLibraryLoaderFactory = null;
@@ -55,7 +55,7 @@ public class SharedLibraryLoader_Test {
return sharedLibraryLoaderFactory != null;
}
- static public boolean test_instantiateSharedLibraryLoader()
+ public static boolean test_instantiateSharedLibraryLoader()
throws java.lang.Exception
{
sharedLibraryLoader = null;
@@ -76,7 +76,7 @@ public class SharedLibraryLoader_Test {
return sharedLibraryLoader != null;
}
- static public boolean test_loadNativeServiceManager()
+ public static boolean test_loadNativeServiceManager()
throws java.lang.Exception
{
nativeServiceManager = null;
@@ -103,7 +103,7 @@ public class SharedLibraryLoader_Test {
return nativeServiceManager != null;
}
- static public boolean test_loadNativeSimpleRegistry()
+ public static boolean test_loadNativeSimpleRegistry()
throws java.lang.Exception
{
System.out.println("*******************************************************************");
@@ -127,7 +127,7 @@ public class SharedLibraryLoader_Test {
return true;
}
- static public boolean test_registerSharedLibraryLoader()
+ public static boolean test_registerSharedLibraryLoader()
throws java.lang.Exception
{
boolean result = true;
@@ -148,7 +148,7 @@ public class SharedLibraryLoader_Test {
return result;
}
- static public boolean test() throws java.lang.Exception {
+ public static boolean test() throws java.lang.Exception {
boolean passed = true;
System.err.println("SharedLibraryLoader - doing tests...");
@@ -162,7 +162,7 @@ public class SharedLibraryLoader_Test {
return passed;
}
- static public void main(String args[]) throws java.lang.Exception {
+ public static void main(String args[]) throws java.lang.Exception {
System.exit( test() ? 0: -1 );
}
}