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
+3 -3
View File
@@ -1,9 +1,9 @@
class A {
public fun foo(p: Int) {
internal class A {
fun foo(p: Int) {
println("p = [$p]")
}
Synchronized public fun foo() {
Synchronized fun foo() {
foo(calcSomething())
}