We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a70a2e commit 1c3ec40Copy full SHA for 1c3ec40
src/main/java/net/theevilreaper/bounce/profile/BounceProfile.java
@@ -141,7 +141,6 @@ public void sendStats(boolean winner) {
141
142
@Override
143
public int compareTo(@NotNull BounceProfile other) {
144
- System.out.println("" + this.points + " vs " + other.points);
145
int pointComparison = Integer.compare(this.points, other.points); // Descending by points
146
if (pointComparison != 0) return pointComparison;
147
0 commit comments