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

16 lines
239 B
Java

class Test {
String s1 = getString();
String s;
{
if (s1 != null) {
String temp = s1.trim();
s = temp;
} else {
s = "";
}
}
native String getString();
}