(conf) Improve naming consistency

Rename the property system.conserve-memory to system.conserveMemory in order to be consistent with other properties in the system.
This commit is contained in:
Viktor Lofgren 2024-02-09 14:43:08 +01:00
parent b15f47d80e
commit 1188fe3bf0

View File

@ -25,7 +25,7 @@ public interface RandomFileAssembler extends AutoCloseable {
static RandomFileAssembler create(Path workDir,
long totalSize) throws IOException {
// If the system is configured to conserve memory, we use temp files
if (Boolean.getBoolean("system.conserve-memory")) {
if (Boolean.getBoolean("system.conserveMemory")) {
return ofTempFiles(workDir, totalSize);
}