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
@@ -5,10 +5,10 @@ trait Test {
class SomeTest : Test {
val hello = 12
public override fun test() {
override fun test() {
throw UnsupportedOperationException()
}
protected override val testProp: Int = 0
override val testProp: Int = 0
/**
* test