Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
esotericenderman committed Jul 25, 2024
1 parent e471a1a commit 4e4ae48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ private void load() {
PlayerProfile profile;

try {
reader = new FileReader(playerDataFile);
reader = new FileReader(playerDataFile);

profile = gson.fromJson(reader, PlayerProfile.class);

reader.close();
reader.close();
} catch (IOException exception) {
exception.printStackTrace();
continue;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package net.slqmy.template_paper_plugin.language;

public enum Message {

}

0 comments on commit 4e4ae48

Please sign in to comment.