Minor in JS backend: drop unnecessary inline annotations.

This commit is contained in:
Zalim Bashorov
2014-08-26 12:31:47 +04:00
parent 0fd1b5152a
commit 0c0d049de7
4 changed files with 11 additions and 11 deletions
@@ -3,7 +3,7 @@ package foo
import java.util.HashMap
public inline fun <K, V> Map<K, V>.iterator(): Iterator<Map.Entry<K, V>> {
public fun <K, V> Map<K, V>.iterator(): Iterator<Map.Entry<K, V>> {
val entrySet = this.entrySet()
return entrySet.iterator()
}
@@ -38,4 +38,4 @@ fun box(): String {
if (s2 != "s2") return "s2 != 's2', it: ${s2}"
return "OK"
}
}