diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-03-12 09:48:53 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-03-12 09:48:53 +0000 |
commit | dafeffec8f8c51f86ebe1c8475d0bd332e584809 (patch) | |
tree | 46483685aee10602ba0d13521ea668aa156c4e0f | |
parent | 503cde6344d066f993a0ccea7831abe34384fe02 (diff) |
INTEGRATION: CWS sb36 (1.2.4); FILE MERGED
2006/03/13 10:38:15 sb 1.2.4.3: RESYNC: (1.3-1.4); FILE MERGED
2005/09/22 04:13:21 sb 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED
2005/07/11 13:24:40 sb 1.2.4.1: #i51803# Changed parameters of UnoClassLoader ctor, to specifiy a per-UnoClassLoader classpath.
-rw-r--r-- | ridljar/source/unoloader/com/sun/star/lib/unoloader/UnoLoader.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ridljar/source/unoloader/com/sun/star/lib/unoloader/UnoLoader.java b/ridljar/source/unoloader/com/sun/star/lib/unoloader/UnoLoader.java index ced9b580f..d1edcd9c8 100644 --- a/ridljar/source/unoloader/com/sun/star/lib/unoloader/UnoLoader.java +++ b/ridljar/source/unoloader/com/sun/star/lib/unoloader/UnoLoader.java @@ -4,9 +4,9 @@ * * $RCSfile: UnoLoader.java,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: obo $ $Date: 2006-01-20 10:10:39 $ + * last change: $Author: obo $ $Date: 2007-03-12 10:48:53 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -79,8 +79,8 @@ public final class UnoLoader { throws IOException, ClassNotFoundException, NoSuchMethodException, InvocationTargetException { - new UnoClassLoader(base, UnoLoader.class.getClassLoader()).execute( - jar, arguments); + new UnoClassLoader(base, null, UnoLoader.class.getClassLoader()). + execute(jar, arguments); } private UnoLoader() {} |