mirror of
https://github.com/Qortal/qortal.git
synced 2025-06-19 06:11:20 +00:00
Simplified cleanup process. Individual deletions aren't needed as they are all inside the main temp directory.
This commit is contained in:
parent
b265dc3bfb
commit
00401080e0
@ -293,18 +293,7 @@ public class Bootstrap {
|
|||||||
|
|
||||||
// Cleanup
|
// Cleanup
|
||||||
LOGGER.info("Cleaning up...");
|
LOGGER.info("Cleaning up...");
|
||||||
try {
|
|
||||||
if (inputPath != null) {
|
|
||||||
FileUtils.deleteDirectory(inputPath.toFile());
|
|
||||||
}
|
|
||||||
if (outputPath != null) {
|
|
||||||
FileUtils.deleteDirectory(outputPath.toFile());
|
|
||||||
}
|
|
||||||
this.deleteAllTempDirectories();
|
this.deleteAllTempDirectories();
|
||||||
|
|
||||||
} catch (IOException e) {
|
|
||||||
LOGGER.info("Error during cleanup, but created bootstrap is still valid. {}", e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -488,7 +477,7 @@ public class Bootstrap {
|
|||||||
try {
|
try {
|
||||||
FileUtils.deleteDirectory(path.toFile());
|
FileUtils.deleteDirectory(path.toFile());
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
LOGGER.info("Unable to delete temp directory path: {}", path.toString());
|
LOGGER.info("Unable to delete temp directory path: {}", path.toString(), e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user