You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I found a false negative about the rule FI_EXPLICIT_INVOCATION. In the following code example, SpotBugs should report a warning at line 4, but it does not.
publicclassC {
publicclasssubC {
voidbug(Cany) throwsThrowable {
any.finalize(); // should report a warning at this line
}
}
}