Removed redundant 'out' in MutableMap.putAll

This commit is contained in:
Evgeny Gerashchenko
2013-01-31 20:46:22 +04:00
parent 74771cb2db
commit d0b18287c8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -141,7 +141,7 @@ public trait MutableMap<K, V> : Map<K, V> {
public fun remove(key : Any?) : V?
// Bulk Modification Operations
public fun putAll(m : Map<out K, out V>)
public fun putAll(m : Map<out K, V>)
public fun clear()
// Views
+1 -1
View File
@@ -1070,7 +1070,7 @@ public trait MutableMap</*0*/ K, /*1*/ V> : jet.Map<K, V> {
public abstract override /*1*/ /*fake_override*/ fun isEmpty() : jet.Boolean
public abstract override /*1*/ fun keySet() : jet.MutableSet<K>
public abstract fun put(/*0*/ key : K, /*1*/ value : V) : V?
public abstract fun putAll(/*0*/ m : jet.Map<out K, out V>) : Unit
public abstract fun putAll(/*0*/ m : jet.Map<out K, V>) : Unit
public abstract fun remove(/*0*/ key : jet.Any?) : V?
public abstract override /*1*/ /*fake_override*/ fun size() : jet.Int
public abstract override /*1*/ fun values() : jet.MutableCollection<V>