ItEr16S11CUCreacionDeOrganizacionsDeTraballoItEr15S06: Fix bug when assigning a criterion type to the list of selected criterion types in OrderElement form

This commit is contained in:
Diego Pino Garcia 2009-07-08 14:26:31 +02:00 committed by Javier Moran Rua
parent 52e8c843c8
commit e34ea18aa2

View file

@ -174,4 +174,10 @@ import org.springframework.stereotype.Component;
.isEquals();
}
@Override
public int hashCode() {
int hash = 7;
hash = 59 * hash + (this.name != null ? this.name.hashCode() : 0);
return hash;
}
}