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
I am getting a false positive on the dead instanceof hint for the following code:
for (final Object t : timerService.getTimers())
{
// If the timers aren't Timers, skip
if (!(t instanceof Timer))
{
continue;
}
final Timer candidate = (Timer)t;
(Here timerService is a javax.ejb.TimerService and Timer is javax.ejb.Timer.)
The text was updated successfully, but these errors were encountered:
I am getting a false positive on the dead instanceof hint for the following code:
(Here timerService is a javax.ejb.TimerService and Timer is javax.ejb.Timer.)
The text was updated successfully, but these errors were encountered: