Tagged Questions
5
votes
2answers
238 views
Findbugs + JSR305: Possibility to specify default behavior?
Note: those annotations, I'm talking about, are specified by JSR305.
I have the latest Findbugs (1.3.9) and it finds errors correctly
when some field, annotated with @Nonnull, is assigned to null.
...
4
votes
3answers
1k views
@Nullable/@NotNull with IntelliJ IDEA, Maven & JSR 305
I really like the code inspection functionalities which are now able with either JSR 305 or Jetbrains' proprietary annotations for IntelliJ.
Unfortunately both implementations (JSR 305 and Jetbrains') ...
2
votes
1answer
731 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 ...