Remove java.util.* imports from common code.

This commit is contained in:
Ilya Gorbunov
2016-11-16 21:06:57 +03:00
parent b4fbedbc9e
commit 50cd620f92
21 changed files with 9 additions and 40 deletions
+1 -2
View File
@@ -14,10 +14,9 @@
* limitations under the License.
*/
@file:JvmVersion
package test.collections.js
import java.util.*
public fun <V> stringMapOf(vararg pairs: Pair<String, V>): HashMap<String, V> = hashMapOf<String, V>(*pairs)
public fun <V> linkedStringMapOf(vararg pairs: Pair<String, V>): LinkedHashMap<String, V> = linkedMapOf(*pairs)
public fun stringSetOf(vararg elements: String): HashSet<String> = hashSetOf(*elements)