Deprecated conventions (get -> getValue, plus -> unaryPlus) quickfix
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// "Rename to 'setValue'" "true"
|
||||
class CustomDelegate {
|
||||
operator fun get(thisRef: Any?, prop: PropertyMetadata): String = ""
|
||||
operator fun set(thisRef: Any?, prop: PropertyMetadata, value: String) {}
|
||||
}
|
||||
|
||||
class Example {
|
||||
var a: String by <caret>CustomDelegate()
|
||||
}
|
||||
Reference in New Issue
Block a user