mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
10 lines
240 B
Java
10 lines
240 B
Java
public class Test {
|
|
void foo(String container) {
|
|
newMethod(container);
|
|
}
|
|
|
|
private void newMethod(String container) {
|
|
String parent;
|
|
if (container == null && (parent = null) != null && parent != null) {}
|
|
}
|
|
} |