Object.finalize() is called by the Garbage Collector sometime after the object becomes unreferenced.

Overloading this method is misleading:

Another name should be picked for the method.

Noncompliant Code Example

public int finalize(int someParameter) {        // Noncompliant
  /* ... */
}

Compliant Solution

public int someBetterName(int someParameter) {  // Compliant
  /* ... */
}