e6f4d6e6fa
^KT-65406
18 lines
312 B
Kotlin
Vendored
18 lines
312 B
Kotlin
Vendored
class MyMap : AbstractMap<Int, Int> {
|
|
override val entries: Set<Entry<Int, Int>>
|
|
field = emptySet<Entry<Int, Int>>()
|
|
override get
|
|
|
|
constructor() /* primary */ {
|
|
super/*AbstractMap*/<Int, Int>()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
fun containsEntry(entry: Entry<*, *>?): Boolean {
|
|
return false
|
|
}
|
|
|
|
}
|
|
|