diff options
author | Joachim Lingner <jl@openoffice.org> | 2002-04-23 08:21:46 +0000 |
---|---|---|
committer | Joachim Lingner <jl@openoffice.org> | 2002-04-23 08:21:46 +0000 |
commit | 376e3c98c7a2d3b792669cf65a2a79adf440a06a (patch) | |
tree | f9d26cf54ef3744713c17a830d64ac5e0923f957 | |
parent | 47476c101401102e367ac6b07ac35107fde3f443 (diff) |
#97746# MultiTypeInterfaceContainer.java
-rw-r--r-- | javaunohelper/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/javaunohelper/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer.java b/javaunohelper/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer.java index 6f1078341a91..7227bc2cc07d 100644 --- a/javaunohelper/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer.java +++ b/javaunohelper/com/sun/star/lib/uno/helper/MultiTypeInterfaceContainer.java @@ -2,9 +2,9 @@ * * $RCSfile: MultiTypeInterfaceContainer.java,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: jl $ $Date: 2002-04-11 13:39:51 $ + * last change: $Author: jl $ $Date: 2002-04-23 09:21:46 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -123,7 +123,7 @@ public class MultiTypeInterfaceContainer } /** param key can be null */ - synchronized public InterfaceContainer getContainer(Type key) + synchronized public InterfaceContainer getContainer(Object key) { InterfaceContainer retVal= null; Iterator it= map.keySet().iterator(); @@ -168,7 +168,7 @@ public class MultiTypeInterfaceContainer } - synchronized public int removeInterface(Type key, Object iface) + synchronized public int removeInterface(Object key, Object iface) { int retVal= 0; InterfaceContainer cont= (InterfaceContainer) map.get(key); |