mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
16 lines
239 B
Java
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();
|
|
}
|