Rule Definition
The finalize method is careful to call super.finalize from a finally block. All finalize methods should call super.finalize to ensure that any superclass finalize methods are invoked. Unlike superclass constructors that are invoked automatically, finalize methods must be chained manually. The super.finalize call is made from a finally block to ensure that it is called regardless of whether the call to the cleanup method generates an exception.
Remediation
Add a try finally block.
Violation Code Sample
class Test
{
// ...
protected void finalize() throws Throwable {
cleanup();
super.finalize(); // VIOLATION
}
}
Fixed Code Sample
class Test
{
// ...
protected void finalize() throws Throwable {
try {
cleanup();
} finally {
super.finalize(); // FIXED: the finalize method will
// execute the superclass finalizer
// before re-throwing the IOException
// object.
}
}
Reference
Helping objects to a tidy end
Steve Ball and John Miller Crawford
http://www.adtmag.com/java/articleold.aspx?id=43
Related Technologies
JEE
Technical Criterion
CWE-568 - finalize() Method Without super.finalize()
About CAST Appmarq
CAST Appmarq is by far the biggest repository of data about real IT systems. It's built on thousands of analyzed applications, made of 35 different technologies, by over 300 business organizations across major verticals. It provides IT Leaders with factual key analytics to let them know if their applications are on track.