J2K: adapted for default visibility modifier 'public'
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user