b5a6cbd188
#KT-14794 Fixed
10 lines
268 B
Kotlin
Vendored
10 lines
268 B
Kotlin
Vendored
// "Delete redundant extension property" "false"
|
|
// ACTION: Convert property to function
|
|
// ACTION: Move to companion object
|
|
// ACTION: Remove explicit type specification
|
|
|
|
class C : Thread() {
|
|
val Thread.<caret>priority: Int
|
|
get() = this@C.getPriority()
|
|
}
|