ARTEMIS-196 Removing dead variables
Fixing build after removing variable used by FieldUpdater
This commit is contained in:
parent
99b24adfba
commit
5a19c54f9f
artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl
|
@ -227,6 +227,9 @@ public class QueueImpl extends CriticalComponentImpl implements Queue {
|
|||
|
||||
private ScheduledFuture<?> redistributorFuture;
|
||||
|
||||
// This is used by an AtomicFieldUpdater
|
||||
private volatile long consumerRemovedTimestamp = -1;
|
||||
|
||||
private final QueueConsumers<ConsumerHolder<? extends Consumer>> consumers = new QueueConsumersImpl<>();
|
||||
|
||||
private final Map<SimpleString, Consumer> groups = new HashMap<>();
|
||||
|
@ -271,6 +274,10 @@ 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;
|
||||
|
|
Loading…
Reference in New Issue