summaryrefslogtreecommitdiff
path: root/jurt/com/sun/star/lib/uno/protocols
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-03-30 15:20:43 +0000
committerRüdiger Timm <rt@openoffice.org>2004-03-30 15:20:43 +0000
commit34bd3d89cf30b5b7bc5955487692a5f27fdde674 (patch)
tree949eadc28b9322e30ba57839c5f9e48563f1a2f8 /jurt/com/sun/star/lib/uno/protocols
parent327deead2ce2c47650da6d50af1b7db5433a12de (diff)
INTEGRATION: CWS sb14 (1.13.88); FILE MERGED
2004/03/05 08:14:08 sb 1.13.88.1: #i21150# Cleaned up.
Diffstat (limited to 'jurt/com/sun/star/lib/uno/protocols')
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/Marshal.java11
1 files changed, 4 insertions, 7 deletions
diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/Marshal.java b/jurt/com/sun/star/lib/uno/protocols/urp/Marshal.java
index d768b505d8d8..8ca06d5958cd 100644
--- a/jurt/com/sun/star/lib/uno/protocols/urp/Marshal.java
+++ b/jurt/com/sun/star/lib/uno/protocols/urp/Marshal.java
@@ -2,9 +2,9 @@
*
* $RCSfile: Marshal.java,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: hr $ $Date: 2003-03-26 12:33:00 $
+ * last change: $Author: rt $ $Date: 2004-03-30 16:20:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -432,11 +432,8 @@ class Marshal implements IMarshal {
writeObject(__M_InterfaceReferenceTypeDescription, m_InterfaceReference);
}
- void writeReference(ITypeDescription iTypeDescription, Object object) {
- if(DEBUG) System.err.println("##### " + getClass().getName() + ".writeReference:" + iTypeDescription + " " + object);
-
- // map the object to universe
- writeOid(object != null ? (String)_iBridge.mapInterfaceTo(object, new Type(iTypeDescription)) : null);
+ void writeReference(ITypeDescription desc, Object object) {
+ writeOid((String) _iBridge.mapInterfaceTo(object, new Type(desc)));
}
void writeSequence(ITypeDescription iTypeDescription, Object object) {