in tx-control-services/tx-control-service-local/src/main/java/org/apache/aries/tx/control/service/local/impl/TransactionControlImpl.java [48:61]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
TxId other = (TxId) obj;
if (!controlId.equals(other.controlId))
return false;
if (txId != other.txId)
return false;
return true;
}