Replace get() and set() to getValue() and setValue() (property delegates)
This commit is contained in:
@@ -25,7 +25,7 @@ class C {
|
||||
|
||||
|
||||
object Delegate {
|
||||
fun get(x: C, p: PropertyMetadata) = throw AssertionError()
|
||||
fun getValue(x: C, p: PropertyMetadata) = throw AssertionError()
|
||||
|
||||
fun set(x: C, p: PropertyMetadata, value: Int) = throw AssertionError()
|
||||
fun setValue(x: C, p: PropertyMetadata, value: Int) = throw AssertionError()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user