fixed equals

This commit is contained in:
anhefti 2020-05-05 13:33:13 +02:00
parent 4c40af3584
commit bc490612cf

View file

@ -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;
} }