Module Client : test de l'écran de composition des ventes; correction bugs; ajout fichier css; réorganisation packages

This commit is contained in:
Notmoo
2017-08-14 16:38:03 +02:00
parent 0eef751c41
commit d1fdc64cad
46 changed files with 522 additions and 205 deletions

View File

@ -27,21 +27,6 @@ public class Client extends PqtMember{
this.address = address;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Client client = (Client) o;
return address.equals(client.address) && id==client.id && type.equals(client.type);
}
@Override
public int hashCode() {
return address.hashCode() + type.hashCode() + Integer.class.cast(id);
}
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), address);