Skip to content

Commit

Permalink
no comment on flat file
Browse files Browse the repository at this point in the history
  • Loading branch information
HSGamer committed Jan 17, 2025
1 parent d2bb6a5 commit bca6b48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public <K, V> DataStorage<K, V> getStorage(String name, ValueConverter<K> keyCon
Runnable saveRunnable = () -> {
try {
try (FileOutputStream fileOutputStream = new FileOutputStream(file)) {
properties.store(fileOutputStream, "Data for " + name);
properties.store(fileOutputStream, null);
}
} catch (IOException e) {
logger.log(LogLevel.ERROR, "Failed to save the data", e);
Expand Down

0 comments on commit bca6b48

Please sign in to comment.