Version 1.0 #40

Merged
j23f0779 merged 947 commits from development2 into main 2024-12-13 10:26:49 +01:00
Showing only changes of commit bc399b1bf9 - Show all commits

View File

@@ -161,8 +161,7 @@ public boolean equals(Object obj) {
Piece piece = (Piece) obj; Piece piece = (Piece) obj;
System.out.println("own UUID: " + this.uuid + ". Other UUID: " + piece.uuid); System.out.println("own UUID: " + this.uuid + ". Other UUID: " + piece.uuid);
return Objects.equals(this.uuid.toString(), piece.uuid.toString()); return uuid.toString().equals(piece.uuid.toString());
} }
return false; return false;