Příklad
public class
ClassA
{
protected void
finalize ()
throws
Throwable {
super
.finalize();
}
}
Řešení
Odeberte nadbytečné metody finalize(), pokud obsahují pouze jedno volání do super.finalize()
public class
ClassA
{
}