J2K: adapted for default visibility modifier 'public'

This commit is contained in:
Valentin Kipyatkov
2015-09-15 11:29:27 +03:00
parent 1ccbda6af4
commit c3ddd5d32b
477 changed files with 1359 additions and 1350 deletions
@@ -1,16 +1,16 @@
package test
open class ClassWithStatics {
public fun instanceMethod() {
internal open class ClassWithStatics {
fun instanceMethod() {
}
companion object {
public fun staticMethod(p: Int) {
fun staticMethod(p: Int) {
}
public val staticField: Int = 1
val staticField: Int = 1
public var value: Int = 0
var value: Int = 0
}
}