ARTEMIS-196 Removing dead variables

This is really a NO-JIRA
however it was done in the context of merging ARTEMIS-196
This commit is contained in:
Clebert Suconic 2019-01-23 11:24:16 -05:00
parent 7dfa0fe7f4
commit f225a4e166
1 changed files with 0 additions and 9 deletions

View File

@ -227,11 +227,6 @@ public class QueueImpl extends CriticalComponentImpl implements Queue {
private ScheduledFuture<?> redistributorFuture;
// We cache the consumers here since we don't want to include the redistributor
private final AtomicInteger consumersCount = new AtomicInteger();
private volatile long consumerRemovedTimestamp = -1;
private final QueueConsumers<ConsumerHolder<? extends Consumer>> consumers = new QueueConsumersImpl<>();
private final Map<SimpleString, Consumer> groups = new HashMap<>();
@ -276,10 +271,6 @@ public class QueueImpl extends CriticalComponentImpl implements Queue {
private final QueueFactory factory;
public volatile int dispatching = 0;
public volatile long dispatchStartTime = -1;
private volatile int consumersBeforeDispatch = 0;
private volatile long delayBeforeDispatch = 0;