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,27 +1,27 @@
class A() {
internal class A() {
public constructor(a: Int) : this() {
constructor(a: Int) : this() {
}
protected constructor(c: Char) : this() {
}
constructor(f: Float) : this() {
internal constructor(f: Float) : this() {
}
private constructor(d: Double) : this() {
}
}
public class B() {
class B() {
public constructor(a: Int) : this() {
constructor(a: Int) : this() {
}
protected constructor(c: Char) : this() {
}
constructor(f: Float) : this() {
internal constructor(f: Float) : this() {
}
private constructor(d: Double) : this() {