Skip to content

Commit

Permalink
Remove logging of Json objects when saving
Browse files Browse the repository at this point in the history
  • Loading branch information
Burchard36 committed Nov 22, 2021
1 parent 5f2c72b commit e1ead4a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/com/burchard36/json/PluginJsonWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public File createFile(final JsonDataFile dataFile) {
if (file.createNewFile()) {
Logger.log("&aAPI :: Successfully created a DataFile!");
String jsonString = this.gson.toJson(dataFile);
Logger.log(jsonString);
Writer writer = new FileWriter(file);
writer.append(jsonString);
writer.close();
Expand Down

0 comments on commit e1ead4a

Please sign in to comment.