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

@@ -2,7 +2,7 @@ import foo.Intf
class Impl(): Intf {
public override fun getFooBar(): String? {
override fun getFooBar(): String? {
throw UnsupportedOperationException()
}
}