mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
9 lines
246 B
Java
9 lines
246 B
Java
class Bar {
|
|
void bar(Object[] components) {
|
|
for (int i = 0; i < components.length; ++i) {
|
|
final Object component = components[i];
|
|
if (component != null)
|
|
addChildren(component);
|
|
}
|
|
}
|
|
} |