Matthew 1 month ago
commit f433903745

@ -860,7 +860,7 @@ public class AppMaster {
private void deleteFile(String path) {
try {
File file = new File(path);
if (file.exists() && file.isFile()) {
if (file.exists()) {
file.delete();
}
} catch (Exception ex) {

Loading…
Cancel
Save