10 lines
155 B
Plaintext
Vendored
10 lines
155 B
Plaintext
Vendored
// PROBLEM: Redundant overriding method
|
|
// FIX: Remove redundant overriding method
|
|
open class Foo {
|
|
open fun simple() {
|
|
}
|
|
}
|
|
|
|
class Bar : Foo() {
|
|
}
|