Replace get() and set() to getValue() and setValue() (property delegates)
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
val a: Int by A(1)
|
||||
|
||||
class A<T: Any>(i: T) {
|
||||
fun get(t: Any?, p: PropertyMetadata): T {
|
||||
fun getValue(t: Any?, p: PropertyMetadata): T {
|
||||
throw Exception()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user