summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_info_holder.java3
-rw-r--r--bridges/test/java_remote/Bug108825_Test.java3
-rw-r--r--jurt/test/com/sun/star/uno/WeakReference_Test.java3
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/Lifetime/MyUnoObject.java2
4 files changed, 7 insertions, 4 deletions
diff --git a/bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_info_holder.java b/bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_info_holder.java
index 1c2b691bb3a1..e129f1032702 100644
--- a/bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_info_holder.java
+++ b/bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_info_holder.java
@@ -51,9 +51,10 @@ public final class JNI_info_holder
private native void finalize( long jni_info_handle );
@Override
- protected void finalize()
+ protected void finalize() throws Throwable
{
finalize( s_jni_info_handle );
+ super.finalize();
}
}
diff --git a/bridges/test/java_remote/Bug108825_Test.java b/bridges/test/java_remote/Bug108825_Test.java
index e4343c55fcdb..182ae35abad3 100644
--- a/bridges/test/java_remote/Bug108825_Test.java
+++ b/bridges/test/java_remote/Bug108825_Test.java
@@ -88,10 +88,11 @@ public final class Bug108825_Test extends ComplexTestCase {
private final class Dummy implements XDummy {
@Override
- protected void finalize() {
+ protected void finalize() throws Throwable {
synchronized (lock) {
++finalizedCount;
}
+ super.finalize();
}
}
diff --git a/jurt/test/com/sun/star/uno/WeakReference_Test.java b/jurt/test/com/sun/star/uno/WeakReference_Test.java
index a990f449b288..73a847d7bc1a 100644
--- a/jurt/test/com/sun/star/uno/WeakReference_Test.java
+++ b/jurt/test/com/sun/star/uno/WeakReference_Test.java
@@ -44,8 +44,9 @@ public final class WeakReference_Test {
}
@Override
- protected void finalize() {
+ protected void finalize() throws Throwable {
adapter.dispose();
+ super.finalize();
}
private static final class Adapter implements XAdapter {
diff --git a/odk/examples/DevelopersGuide/ProfUNO/Lifetime/MyUnoObject.java b/odk/examples/DevelopersGuide/ProfUNO/Lifetime/MyUnoObject.java
index 1d73270fc62f..080504c1b38b 100644
--- a/odk/examples/DevelopersGuide/ProfUNO/Lifetime/MyUnoObject.java
+++ b/odk/examples/DevelopersGuide/ProfUNO/Lifetime/MyUnoObject.java
@@ -37,8 +37,8 @@ class MyUnoObject implements com.sun.star.uno.XInterface
@Override
protected void finalize() throws Throwable {
- super.finalize();
System.out.println( "finalizer called" );
+ super.finalize();
}
public static void main( String args[] ) throws InterruptedException