I'm running into a rather odd scenario that I've so far managed to pinpoint to differing versions of Eclipse. I'm wondering if someone could tell me what exactly the issue is (Juno doesn't support, it, Kepler provides better support, etc). I'm using jsr305 for annotations.
I have the following example code to replicate the behavior.
@Nonnull
String test = null;
This shouldn't work as I've explicitly said using annotations that test should not be null. It catches it in Kepler, but in Juno it doesn't. All the settings are the same, is this just a case of version incompatibility with jsr305?