Skip to content

Commit

Permalink
Removed unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
Despical committed Oct 29, 2024
1 parent 10219b2 commit c9fd552
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/main/java/me/despical/tntrun/user/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,18 +238,4 @@ public void removeScoreboard() {
public static void cooldownHandlerTask() {
plugin.getServer().getScheduler().runTaskTimerAsynchronously(plugin, () -> cooldownCounter++, 20, 20);
}

// @Override
// public boolean equals(Object obj) {
// if (obj instanceof User user) {
// return user.uuid.equals(this.uuid);
// }
//
// return false;
// }
//
// @Override
// public int hashCode() {
// return Objects.hashCode(this.uuid);
// }
}

0 comments on commit c9fd552

Please sign in to comment.