Hi,
Is there a way to disable the adding of @Nullable annotations? We use Guava, and don't want the noise we get from the @Nullable annotation every time we add an anonymous Function/Predicate,
e.g. Intellij generates this:
return new Predicate<String>() {
@Override
public boolean apply(@javax.annotation.Nullable String input) {
return input.isEmpty();
}
};
which doesn't compile for us as we don't have annotations.jar in our project (and don't particularly want it), and adds unnecessary noise
Cheers,
Jim