Question regarding Null annotation support. When originally announced (
https://blog.jetbrains.com/kotlin/2015/04/upcoming-change-more-null-safety-for-java/), support for javax.validation.constraints was listed.
In some generated code, it has the javax.validation.constraints.NotNull annotation BUT IntelliJ and Kotlin aren't correctly detecting it.
If I modify the generated code to use either org.jetbrains.annotations.NotNull or org.springframework.lang.NonNull or javax.annotation.Nonnull, they all work as expected.
Was it decided to not include javax.validation.constraints in the list after all, or have I potentially found an issue?
I haven't been able to find anything concrete on this topic so hoping someone here can provide some clarity.