mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
12 lines
183 B
Java
Vendored
12 lines
183 B
Java
Vendored
public class J {
|
|
private final String result;
|
|
|
|
private J(String result) {
|
|
this.result = result;
|
|
}
|
|
|
|
private String getResult() {
|
|
return result;
|
|
}
|
|
}
|