diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-08-31 16:22:12 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-09-01 10:02:05 +0200 |
commit | 262ab496955582341e1f383c6eff9a0bb37dd9d7 (patch) | |
tree | 4d02d8f9855aed6daddd25b2ed92224276eedce7 /javaunohelper | |
parent | 765d57f7550a33380d71a09472419611066076b1 (diff) |
Fix typo in code
It passed "make check" on Linux
Change-Id: I4733e6609ee99bef49c2771c83b450ee89d955b5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101804
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'javaunohelper')
-rw-r--r-- | javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java | 4 |
1 files changed, 2 insertions, 2 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 b9c67e68be74..03daa113aaad 100644 --- a/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java +++ b/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java @@ -85,12 +85,12 @@ public class SharedLibraryLoader_Test { if ( sharedLibraryLoader == null && ! test_instantiateSharedLibraryLoader() ) return false; - System.err.println("- get the native ServiceManger factory"); + System.err.println("- get the native ServiceManager factory"); XSingleServiceFactory aSMgrFac = UnoRuntime.queryInterface( XSingleServiceFactory.class, sharedLibraryLoader.activate(NATIVE_SERVICE_MANAGER_IMP_NAME, null, NATIVE_SERVICE_MANAGER_LIB_NAME, null)); - System.err.println("- instantiate the native ServiceManger"); + System.err.println("- instantiate the native ServiceManager"); nativeServiceManager = UnoRuntime.queryInterface( XMultiServiceFactory.class, aSMgrFac.createInstance() ); System.out.print("Test - "); |