summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKay Ramme <kr@openoffice.org>2001-05-08 08:35:52 +0000
committerKay Ramme <kr@openoffice.org>2001-05-08 08:35:52 +0000
commit73c4501bf4d1fe0f85899fa84a9663738432c082 (patch)
tree076e258c5bf8c91ab0b5074d6b6d3a1873b80f98
parent2938ec91445bf68be60ea0382003fa83d5491e6e (diff)
use typedescription provider instead of Type.getTypeDescription
-rw-r--r--jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java b/jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java
index e44a1b8d557f..1823e8c7a49b 100644
--- a/jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java
+++ b/jurt/com/sun/star/lib/uno/bridges/java_remote/java_remote_bridge.java
@@ -2,9 +2,9 @@
*
* $RCSfile: java_remote_bridge.java,v $
*
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
- * last change: $Author: kr $ $Date: 2001-05-04 12:00:32 $
+ * last change: $Author: kr $ $Date: 2001-05-08 09:35:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -130,7 +130,7 @@ import com.sun.star.uno.IQueryInterface;
* The protocol to used is passed by name, the bridge
* then looks for it under <code>com.sun.star.lib.uno.protocols</code>.
* <p>
- * @version $Revision: 1.20 $ $ $Date: 2001-05-04 12:00:32 $
+ * @version $Revision: 1.21 $ $ $Date: 2001-05-08 09:35:52 $
* @author Kay Ramme
* @see com.sun.star.lib.uno.environments.remote.IProtocol
* @since UDK1.0
@@ -891,7 +891,7 @@ public class java_remote_bridge implements IBridge, IReceiver, IRequester, XBrid
// is this what we realy want to do, is the writing to the stream realy protected? Not that
// an other thread flushes the output and an reply arrives before we have added the thread queue!!!
synchronized(_outputStream) {
- _iProtocol.writeRequest((String)object, (TypeDescription)type.getTypeDescription(), operation, ThreadPool.getThreadId(), params, synchron, mustReply);
+ _iProtocol.writeRequest((String)object, TypeDescription.getTypeDescription(type), operation, ThreadPool.getThreadId(), params, synchron, mustReply);
if(synchron[0].booleanValue() && Thread.currentThread() != _messageDispatcher) // prepare a queue for this thread in the threadpool
ThreadPool.addThread(this);