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 @@
import javaApi.Anon5
class A
internal class A
Anon5(10)
constructor(private val a: Int, private val b: Int) {
Deprecated("") // this constructor will not be replaced by default parameter value in primary because of this annotation
public constructor(a: Int) : this(a, 1) {
constructor(a: Int) : this(a, 1) {
}
}
class B Anon5(11)
internal class B Anon5(11)
constructor()
class C Anon5(12)
internal class C Anon5(12)
private constructor()