major fix fix fifixi xi fidhsuifty4372

This commit is contained in:
Chayapak 2023-08-06 12:22:04 +07:00
parent c64973d0bf
commit 50916fdd21

View file

@ -84,7 +84,7 @@ public class PersistentDataUtilities {
// ? how do i clear the file contents without making a completely new writer? // ? how do i clear the file contents without making a completely new writer?
// or is this the only way? // or is this the only way?
writer = Files.newBufferedWriter(path, StandardOpenOption.WRITE); writer = Files.newBufferedWriter(path, StandardOpenOption.TRUNCATE_EXISTING);
writer.write(string); writer.write(string);
writer.flush(); writer.flush();