Fix FIR Java enhancement of java.util.Map & similar supertypes
This commit is contained in:
+2
-2
@@ -1,4 +1,4 @@
|
||||
public abstract interface SubclassOfCollection<E> : R|kotlin/collections/Collection<E>| {
|
||||
public abstract operator fun iterator(): R|kotlin/collections/Iterator<ft<E, E?>>|
|
||||
public abstract interface SubclassOfCollection<E> : R|kotlin/collections/MutableCollection<E>| {
|
||||
public abstract operator fun iterator(): R|kotlin/collections/MutableIterator<ft<E, E?>>|
|
||||
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
public abstract interface SubclassOfMapEntry<K, V> : R|kotlin/collections/Map.Entry<K, V>| {
|
||||
public abstract operator fun setValue(value: R|ft<V, V?>|!): R|ft<V, V?>|!
|
||||
public abstract interface SubclassOfMapEntry<K, V> : R|kotlin/collections/MutableMap.MutableEntry<K, V>| {
|
||||
public abstract operator fun setValue(value: R|V|): R|V|
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user