CPD Results
The following document contains the results of PMD's CPD 4.1.
Duplications
File | Line |
---|
org/apache/geronimo/connector/outbound/LocalXAResource.java | 97 |
org/apache/geronimo/connector/outbound/transactionlog/LogXAResource.java | 85 |
}
public void start(Xid xid, int flag) throws XAException {
if (flag == XAResource.TMNOFLAGS) {
// first time in this transaction
if (this.xid != null) {
throw new XAException("already enlisted");
}
this.xid = xid;
try {
localTransaction.begin();
} catch (ResourceException e) {
throw (XAException) new XAException("could not start local tx").initCause(e);
}
} else if (flag == XAResource.TMRESUME) {
if (xid != this.xid) {
throw new XAException("attempting to resume in different transaction");
}
} else {
throw new XAException("unknown state");
}
}
public String getName() { |