I've tagged a method in my code with javax.annotation.CheckForNull
and use it, without checking for null
, in another place. When I run this code through FindBugs in Eclipse (via the plugin), there is no warning though.
Assuming there should be a warning (if not, what's a good test case?), why is it not showing?
It does show other warnings, not related to annotations.