resources.report.rules.findbugs.FI_USELESS.html Maven / Gradle / Ivy
FI_USELESS
FI: Finalizer does nothing but call superclass finalizer (FI_USELESS)
The only thing this finalize()
method does is call
the superclass's finalize()
method, making it
redundant. Delete it.