diff options
author | Kay Ramme <kr@openoffice.org> | 2001-01-22 16:35:05 +0000 |
---|---|---|
committer | Kay Ramme <kr@openoffice.org> | 2001-01-22 16:35:05 +0000 |
commit | 38dd41be773a63a996ad788112b09f73a585cee4 (patch) | |
tree | e29d4fbc681ddcd26e1b1c88afc6e0b0054da352 /jurt | |
parent | 9e3cdc56ae8aa9545872cd9b4717e06b65e93508 (diff) |
#82550# create a new java environment for every bridge
Diffstat (limited to 'jurt')
-rw-r--r-- | jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java b/jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java index 368f57a52e71..20c070093a06 100644 --- a/jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java +++ b/jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java @@ -2,9 +2,9 @@ * * $RCSfile: BridgeFactory.java,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: tpf $ $Date: 2000-12-07 19:10:03 $ + * last change: $Author: kr $ $Date: 2001-01-22 17:35:05 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -97,7 +97,7 @@ import com.sun.star.uno.UnoRuntime; * <p> * This component is only usable for remote bridges. * <p> - * @version $Revision: 1.5 $ $ $Date: 2000-12-07 19:10:03 $ + * @version $Revision: 1.6 $ $ $Date: 2001-01-22 17:35:05 $ * @author Kay Ramme * @see com.sun.star.uno.UnoRuntime * @since UDK1.0 @@ -177,7 +177,7 @@ public class BridgeFactory implements XBridgeFactory/*, XEventListener*/ { XBridge xBridge = null; try { - IBridge iBridge = UnoRuntime.getBridgeByName("java", null, "remote", sName, new Object[]{sProtocol, aConnection, anInstanceProvider, sName}); + IBridge iBridge = UnoRuntime.getBridgeByName("java", sName, "remote", sName, new Object[]{sProtocol, aConnection, anInstanceProvider, sName}); xBridge = (XBridge)UnoRuntime.queryInterface(XBridge.class, iBridge); } |