This closes #1528
This commit is contained in:
commit
f150c0918e
|
@ -24,7 +24,6 @@ import java.util.concurrent.ConcurrentMap;
|
|||
import java.util.concurrent.Executor;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
|
||||
import io.netty.buffer.ByteBuf;
|
||||
import org.apache.activemq.artemis.api.core.ActiveMQBuffers;
|
||||
import org.apache.activemq.artemis.api.core.ActiveMQException;
|
||||
import org.apache.activemq.artemis.core.buffers.impl.ChannelBufferWrapper;
|
||||
|
@ -55,6 +54,8 @@ import org.apache.qpid.proton.amqp.Symbol;
|
|||
import org.apache.qpid.proton.amqp.transport.AmqpError;
|
||||
import org.jboss.logging.Logger;
|
||||
|
||||
import io.netty.buffer.ByteBuf;
|
||||
|
||||
public class AMQPConnectionCallback implements FailureListener, CloseListener {
|
||||
|
||||
private static final Logger logger = Logger.getLogger(AMQPConnectionCallback.class);
|
||||
|
@ -261,11 +262,6 @@ public class AMQPConnectionCallback implements FailureListener, CloseListener {
|
|||
return tx;
|
||||
}
|
||||
|
||||
public Transaction removeTransaction(Binary txid) {
|
||||
XidImpl xid = newXID(txid.getArray());
|
||||
return transactions.remove(xid);
|
||||
}
|
||||
|
||||
protected XidImpl newXID() {
|
||||
return newXID(UUIDGenerator.getInstance().generateStringUUID().getBytes());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue