Do not add explicit visibility modifiers in Override/Implement

This commit is contained in:
Andrey Breslav
2013-09-05 21:52:56 +04:00
parent a3a5f9015a
commit fa2ea75c09
15 changed files with 47 additions and 29 deletions

View File

@@ -4,7 +4,7 @@ import foo.Intf
class Impl(): Intf() {
protected override fun getFooBar(): String? {
override fun getFooBar(): String? {
return super<Intf>.getFooBar()
}
}