merge the new developmentbranch into the test branch #39

Closed
j23f0712 wants to merge 431 commits from development2 into dev/test
253 changed files with 13265 additions and 2395 deletions
Showing only changes of commit bc399b1bf9 - Show all commits

View File

@@ -161,8 +161,7 @@ public boolean equals(Object obj) {
Piece piece = (Piece) obj;
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;