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-87c2c4800839
master
renato.oliveira 2019-02-15 20:10:21 +00:00
parent b1a4ff7418
commit 2c9a38fa29
1 changed files with 3 additions and 3 deletions

View File

@ -109,10 +109,10 @@ public class TarifaMinimaCategoria implements Serializable {
if (obj == null)
return false;
TarifaMinimaCategoria other = (TarifaMinimaCategoria) obj;
if (tarifaminimacategoriaId == null) {
if (other.tarifaminimacategoriaId != null)
if (categoria == null) {
if (other.categoria != null)
return false;
} else if (!tarifaminimacategoriaId.equals(other.tarifaminimacategoriaId))
} else if (!categoria.equals(other.categoria))
return false;
return true;
}