FindBugs has found a potential bug in my code. But it is not a bug.
Is it possible to mark this occurrence as 'not a bug' AND have it removed from the bug list?
I have documented quite clearly why for each case it is not a bug.
For example. A class implements the comparable interface. it has the compareTo method. I have however not overridden the equals method.
FindBugs does not like this as the JavaDocs state that it is recommended that
(x.compareTo(y)==0) == (x.equals(y))
Although in my case the above condition is and always will be true.