pniederw
01/22/2019, 6:57 AM@Nullable
annotation to my Java code and annotating my Java packages with @NonnullByDefault
, I'm getting inexplicable errors for my Kotlin code in IntelliJ (but not in Gradle build). For example, some equality comparisons (!=
) now give this error:
Error:(522, 58) Kotlin: No method 'equals(Any?): Boolean' available
Error:(522, 58) Kotlin: Unresolved reference: !=
Any ideas what's going on here?