mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
15 lines
184 B
Java
15 lines
184 B
Java
import java.io.File;
|
|
|
|
class Some {
|
|
private File findRepository(File file) {
|
|
while (file != null) {
|
|
file = file.getParentFile();
|
|
}
|
|
|
|
return new File("foo");
|
|
}
|
|
|
|
}
|
|
|
|
|