Tagged Questions
2
votes
1answer
729 views
Findbugs using jsr305 annotations in eclipse is not finding bugs
I've been experimenting with the jsr 305 annotations for use with Findbugs, specifically the @CheckForNull annotation which would have avoided a bug I just found making it out to customers. I've added ...
0
votes
1answer
42 views
Is @ParametersAreNonnullByDefault applies to method return values too?
The documentation for @ParametersAreNonnullByDefault says, that:
This annotation can be applied to a package, class or method to indicate that the method parameters in that element are nonnull by ...