mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
Do not add explicit visibility modifiers in Override/Implement
This commit is contained in:
@@ -4,7 +4,7 @@ import foo.Intf
|
||||
|
||||
class Impl(): Intf() {
|
||||
|
||||
protected override fun getFooBar(): String? {
|
||||
override fun getFooBar(): String? {
|
||||
return super<Intf>.getFooBar()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user