From 262ab496955582341e1f383c6eff9a0bb37dd9d7 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Mon, 31 Aug 2020 16:22:12 +0200 Subject: 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 --- .../test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'javaunohelper') 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 - "); -- cgit