<@U6PE45XCY> beside annotations it looks like a va...
# announcements
r
@santiago beside annotations it looks like a variance issue. This comes up frequently with interop between Java and other langs because different variance support or way to handle it in Java.
Map<String, String>
is invariant in value whereas
Map<String, ? extends String>
is covariant, presumably you had
out
somewhere in the Kotlin side.