From 2c9a38fa296344d179f35baf392fb37e93fa81cc Mon Sep 17 00:00:00 2001 From: "renato.oliveira" Date: Fri, 15 Feb 2019 20:10:21 +0000 Subject: [PATCH] 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 --- .../ventaboletos/entidad/TarifaMinimaCategoria.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/rjconsultores/ventaboletos/entidad/TarifaMinimaCategoria.java b/src/com/rjconsultores/ventaboletos/entidad/TarifaMinimaCategoria.java index 12f597e99..fae34a104 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/TarifaMinimaCategoria.java +++ b/src/com/rjconsultores/ventaboletos/entidad/TarifaMinimaCategoria.java @@ -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; }