Beispiel

public class ClassA {
protected void finalize () throws Throwable {
}
}


Lösung
Entfernen Sie leere Methoden 'finalize()'.

public class ClassA {

}