a9eadcbaf4
#KT-12046 Fixed
11 lines
152 B
Java
Vendored
11 lines
152 B
Java
Vendored
public class C {
|
|
private String x = null;
|
|
|
|
public String getX() {
|
|
return x;
|
|
}
|
|
|
|
void setX(String x) {
|
|
this.x = x;
|
|
}
|
|
} |