J2K: do not produce redundant "internal" words for members in an internal class

This commit is contained in:
Valentin Kipyatkov
2015-09-16 21:50:01 +03:00
parent 367b32c309
commit 0cc2158ec1
260 changed files with 459 additions and 448 deletions
@@ -3,13 +3,13 @@
package test
internal class Foo {
internal fun execute() {
fun execute() {
}
}
internal class Bar {
internal var fooNotNull = Foo()
internal var fooNullable: Foo? = null
var fooNotNull = Foo()
var fooNullable: Foo? = null
}
internal class Test {