From d0b18287c8fc292166ccc222376112f68bef34b5 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Thu, 31 Jan 2013 20:46:22 +0400 Subject: [PATCH] Removed redundant 'out' in MutableMap.putAll --- compiler/frontend/src/jet/Collections.jet | 2 +- compiler/testData/builtin-classes.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/frontend/src/jet/Collections.jet b/compiler/frontend/src/jet/Collections.jet index 306958cf1d4..faf7c69f6b3 100644 --- a/compiler/frontend/src/jet/Collections.jet +++ b/compiler/frontend/src/jet/Collections.jet @@ -141,7 +141,7 @@ public trait MutableMap : Map { public fun remove(key : Any?) : V? // Bulk Modification Operations - public fun putAll(m : Map) + public fun putAll(m : Map) public fun clear() // Views diff --git a/compiler/testData/builtin-classes.txt b/compiler/testData/builtin-classes.txt index f4eb9bb9521..cab6f96121d 100644 --- a/compiler/testData/builtin-classes.txt +++ b/compiler/testData/builtin-classes.txt @@ -1070,7 +1070,7 @@ public trait MutableMap : jet.Map { public abstract override /*1*/ /*fake_override*/ fun isEmpty() : jet.Boolean public abstract override /*1*/ fun keySet() : jet.MutableSet public abstract fun put(/*0*/ key : K, /*1*/ value : V) : V? - public abstract fun putAll(/*0*/ m : jet.Map) : Unit + public abstract fun putAll(/*0*/ m : jet.Map) : 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