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
@@ -2,7 +2,7 @@ package foo
class Impl: B {
public override fun foo(r: Runnable?) {
override fun foo(r: Runnable?) {
throw UnsupportedOperationException()
}
}