mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
10 lines
243 B
Java
10 lines
243 B
Java
// "Replace with bulk 'Files.readAttributes()' call" "false"
|
|
import java.io.*;
|
|
|
|
class Foo {
|
|
void printDirectory(File file, long lastModified) {
|
|
while (file.isDire<caret>ctory()) {
|
|
System.out.println(file.isDirectory());
|
|
}
|
|
}
|
|
} |