промежуточный. отладка проверки папки на бытность тестом.

This commit is contained in:
2023-11-23 20:38:57 +03:00
parent 697e103a5c
commit b3401bfe1c
9 changed files with 173 additions and 15 deletions

View File

@@ -951,18 +951,18 @@ public class Utils {
}
protected static boolean isSource(File file) {
if (file.isFile()) {
String extension = getExtension(file);
String extension = getExtension(file).toLowerCase();
switch (extension) {
case "f":
case "fdv":
case "for":
case "f77":
case "f90":
case "fh":
// case "fh":
case "c":
case "cdv":
case "cpp":
case "h":
// case "h":
return true;
}
}