I'm trying to eliminate a false positive for DLS_DEAD_LOCAL_STORE
Here's what I have tried so far:
@SuppressWarnings("DLS_DEAD_LOCAL_STORE")
@edu.umd.cs.findbugs.annotations.SuppressWarnings("DLS_DEAD_LOCAL_STORE")
(based on SuppressWarnings not working on FindBugs)
@edu.umd.cs.findbugs.annotations.SuppressWarnings(value = "DLS_DEAD_LOCAL_STORE", justification = "please go away")
based on http://osdir.com/ml/java-findbugs-general/2010-06/msg00017.html
But none of the options is helping. Please advice. Using Eclipse Indigo.