Call super.finalize() from finalize() (CSF)

Description:

As it is mentioned in book "The Java Programming Language" by Ken Arnold and James Gosling, calling of super.finalize() from finalize() is good practice of programming, even if base class doesn't define finalize() method. This makes class implementations less dependent from each other.

Example:

   class C {
       public void finalize(){
        // warning message will be produced
       }
   }