13 lines
219 B
Kotlin
Vendored
13 lines
219 B
Kotlin
Vendored
// PROBLEM: Redundant overriding method
|
|
// FIX: Remove redundant overriding method
|
|
open class Foo {
|
|
open fun simple() {
|
|
}
|
|
}
|
|
|
|
class Bar : Foo() {
|
|
override <caret>fun simple() {
|
|
super.simple()
|
|
}
|
|
}
|