Removed unneeded println

This commit is contained in:
sekwah 2018-01-23 06:19:41 +00:00
commit 472d748fa1

View File

@ -54,7 +54,6 @@ public class DataStorage {
String json = gson.toJson(dataHolder);
try {
FileWriter fileWriter = new FileWriter(new File(this.dataFolder, location));
System.out.println(json);
fileWriter.write(json);
fileWriter.close();
} catch (IOException e) {