Tagged Questions

2
votes
1answer
455 views

Automatically generating equals and hashCode in Eclipse that is aware of @NonNull annotations

Is there a way to configure Eclipse to automatically generate hashCode and equals with awareness of @NonNull annotations? Currently my Eclipse generates the code with unnecessary null checks, even on ...
2
votes
1answer
770 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 ...