mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
12 lines
201 B
Java
12 lines
201 B
Java
public class C {
|
|
{
|
|
Object o = getO();
|
|
String s;
|
|
if (o == null)
|
|
s = "";
|
|
else {
|
|
String s1 = o.toString();
|
|
s = s1;
|
|
}
|
|
}
|
|
} |