a9eadcbaf4
#KT-12046 Fixed
12 lines
203 B
Java
Vendored
12 lines
203 B
Java
Vendored
public class C {
|
|
private String x = "";
|
|
|
|
public String getX() {
|
|
System.out.println("getter invoked");
|
|
return x;
|
|
}
|
|
|
|
public void setX(String x) {
|
|
this.x = x;
|
|
}
|
|
} |