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,14 +1,14 @@
// ERROR: Property must be initialized or be abstract
public class Test {
class Test {
private val s: String
var b: Boolean = false
var d: Double = 0.toDouble()
internal var b: Boolean = false
internal var d: Double = 0.toDouble()
public constructor() {
constructor() {
b = true
}
public constructor(s: String) {
constructor(s: String) {
this.s = s
}
}