Bug report: After upgrading from Kotlin 1.3.21 to ...
# spring
j
Bug report: After upgrading from Kotlin 1.3.21 to 1.3.31, I cannot do anymore
if (object == null)
for java classes like
org.springframework.data.mongodb.core.query.Criteria
who redefine
public boolean equals(Object obj): Boolean
and forgot the
@Nullable
annotation, while the package is marked at
@NonNullApi
. Work around:
if (object === null)
is working
k
Is it really 4 equal signs? or did you mean
===
?
j
sorry, it's 3 equal signs