mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 02:33:48 +07:00
12 lines
191 B
Java
12 lines
191 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Some {
|
|
void bar2(@Nullable Iterable<? extends String> dirs) {
|
|
if (dirs != null) {
|
|
for (String dir : dirs) {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
} |