Files
2020-03-17 20:53:55 +00:00

7 lines
153 B
Java

class Test {
String s1 = getString();
String s = s1 != null ? <selection>s1.trim()</selection> : "";
native String getString();
}