Apricot tart

This commit is contained in:
An Bui 2024-12-01 11:54:36 +07:00
parent 21f7540c28
commit 4e6183580e
14 changed files with 1239 additions and 805 deletions

View file

@ -508,7 +508,7 @@ public class VectrasApp extends Application {
}
public static boolean isFileExists(String filePath) {
File file = new File(filePath);
File file = new File(filePath.replaceAll("\n", ""));
return file.exists();
}