Remove useless wait-for-it script

This commit is contained in:
2025-12-11 23:38:30 +01:00
parent 35f5978849
commit 47e812d710
2 changed files with 4 additions and 10 deletions

View File

@@ -2,11 +2,10 @@ package be.naaturel.boardmateapi.common.models;
public class Piece {
private String notation;
private String name;
public Piece(){
private final String notation;
public Piece(String notation){
this.notation = notation;
}
@Override