Adjust testData to *Map transformation

This commit is contained in:
Denis Zharkov
2015-10-12 19:51:28 +03:00
committed by Mikhail Glukhikh
parent 6fa8083a70
commit d71b0144d5
14 changed files with 62 additions and 62 deletions
+6 -6
View File
@@ -5,27 +5,27 @@ class A : Map<String, String> {
throw UnsupportedOperationException()
}
override fun containsKey(key: Any?): Boolean {
override fun containsKey(key: String): Boolean {
throw UnsupportedOperationException()
}
override fun containsValue(value: Any?): Boolean {
override fun containsValue(value: String): Boolean {
throw UnsupportedOperationException()
}
override fun get(key: Any?): String? {
override fun get(key: String): String? {
throw UnsupportedOperationException()
}
override fun keySet(): Set<String> {
override val keys: Set<String> get() {
throw UnsupportedOperationException()
}
override fun values(): Collection<String> {
override val values: Collection<String> get() {
throw UnsupportedOperationException()
}
override fun entrySet(): Set<Map.Entry<String, String>> {
override val entries: Set<Map.Entry<String, String>> get() {
throw UnsupportedOperationException()
}
}