summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-11-11 15:35:08 +0200
committerNoel Grandin <noelgrandin@gmail.com>2014-11-12 08:02:18 +0000
commitb95dcb97de986a1e7dd7f7fda258e559f8d60b1c (patch)
tree58442e1ad7bdf30eb0a6e7c673f56355939f059f /odk
parent36ff1527c9cb20542d3097d123d221c40a356795 (diff)
java: last statement in finalize() method should be call to super.finalize()
Change-Id: I1785c6cef1fe7c1990207a76c263cff388cbb7e1 Reviewed-on: https://gerrit.libreoffice.org/12375 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/ProfUNO/Lifetime/MyUnoObject.java2
1 files changed, 1 insertions, 1 deletions
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