Skip to content

Commit bca6b48

Browse files
committed
no comment on flat file
1 parent d2bb6a5 commit bca6b48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/simple/src/main/java/me/hsgamer/topper/storage/simple/supplier/FlatStorageSupplier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public <K, V> DataStorage<K, V> getStorage(String name, ValueConverter<K> keyCon
4343
Runnable saveRunnable = () -> {
4444
try {
4545
try (FileOutputStream fileOutputStream = new FileOutputStream(file)) {
46-
properties.store(fileOutputStream, "Data for " + name);
46+
properties.store(fileOutputStream, null);
4747
}
4848
} catch (IOException e) {
4949
logger.log(LogLevel.ERROR, "Failed to save the data", e);

0 commit comments

Comments
 (0)