Separate library files which contain code and those which declarations only. Fixes builder test/
This commit is contained in:
@@ -2,4 +2,6 @@ package kotlin
|
||||
|
||||
import java.util.Map as JMap
|
||||
/** Provides [] access to maps */
|
||||
public fun <K, V> JMap<K, V>.set(key : K, value : V): Unit = this.put(key, value)
|
||||
public fun <K, V> JMap<K, V>.set(key : K, value : V): Unit {
|
||||
this.put(key, value)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user