New J2K: fix testData
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
class C {
|
||||
protected var x: String? = ""
|
||||
protected var x = ""
|
||||
|
||||
fun getX(): String? {
|
||||
fun getX(): String {
|
||||
return x
|
||||
}
|
||||
|
||||
fun setX(x: String?) {
|
||||
fun setX(x: String) {
|
||||
println("setter invoked")
|
||||
this.x = x
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user