fixes bug#13266
dev:Renato qua:Lucas git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@89926 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
b1a4ff7418
commit
2c9a38fa29
|
@ -109,10 +109,10 @@ public class TarifaMinimaCategoria implements Serializable {
|
||||||
if (obj == null)
|
if (obj == null)
|
||||||
return false;
|
return false;
|
||||||
TarifaMinimaCategoria other = (TarifaMinimaCategoria) obj;
|
TarifaMinimaCategoria other = (TarifaMinimaCategoria) obj;
|
||||||
if (tarifaminimacategoriaId == null) {
|
if (categoria == null) {
|
||||||
if (other.tarifaminimacategoriaId != null)
|
if (other.categoria != null)
|
||||||
return false;
|
return false;
|
||||||
} else if (!tarifaminimacategoriaId.equals(other.tarifaminimacategoriaId))
|
} else if (!categoria.equals(other.categoria))
|
||||||
return false;
|
return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue