summaryrefslogtreecommitdiff
path: root/bridges/source/jni_uno/java
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-03-20 11:42:26 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-03-20 11:42:26 +0000
commitdc42090d155ee83ad87332929002769f58bf4299 (patch)
tree5eb3a85e887af8a095a0d9957c5a04785fba69a1 /bridges/source/jni_uno/java
parentd8f92462826aba8924ee07da4a599a5d7d042f62 (diff)
INTEGRATION: CWS uno1 (1.1.2.3.8); FILE MERGED
2003/02/25 17:13:18 dbo 1.1.2.3.8.1: #107762# additional DEBUG info; java proxy hashCode() fix
Diffstat (limited to 'bridges/source/jni_uno/java')
-rw-r--r--bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java b/bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java
index 2782eece91af..17243b54adf9 100644
--- a/bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java
+++ b/bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java
@@ -2,9 +2,9 @@
*
* $RCSfile: JNI_proxy.java,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hr $ $Date: 2003-03-18 19:07:04 $
+ * last change: $Author: vg $ $Date: 2003-03-20 12:42:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -169,7 +169,7 @@ public final class JNI_proxy implements java.lang.reflect.InvocationHandler
{
if (method_name.equals( "hashCode" )) // int hashCode()
{
- return new Integer( System.identityHashCode( args[ 0 ] ) );
+ return new Integer( System.identityHashCode( proxy ) );
}
else if (method_name.equals( "equals" )) // boolean equals( Object obj )
{