mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
15 lines
271 B
Java
15 lines
271 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
import java.io.File;
|
|
|
|
class Doo {
|
|
|
|
private static void doSomething(@Nullable File file) {
|
|
while (file != null) {
|
|
calc(file);
|
|
file = file.getParentFile();
|
|
}
|
|
}
|
|
private static void calc(File file) {
|
|
}
|
|
} |