fixed equals
This commit is contained in:
parent
4c40af3584
commit
bc490612cf
1 changed files with 1 additions and 1 deletions
|
@ -554,7 +554,7 @@ public final class ClientConnectionTable {
|
||||||
if (getClass() != obj.getClass())
|
if (getClass() != obj.getClass())
|
||||||
return false;
|
return false;
|
||||||
final UpdatableTableItem other = (UpdatableTableItem) obj;
|
final UpdatableTableItem other = (UpdatableTableItem) obj;
|
||||||
if (!getOuterType().equals(other.getOuterType()))
|
if (getOuterType() != other.getOuterType())
|
||||||
return false;
|
return false;
|
||||||
return compareTo(other) == 0;
|
return compareTo(other) == 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue