diff --git a/org.springframework.integration/src/main/java/org/springframework/integration/aggregator/AbstractMessageBarrierConsumer.java b/org.springframework.integration/src/main/java/org/springframework/integration/aggregator/AbstractMessageBarrierConsumer.java
index caac2a03da..2e221ea896 100644
--- a/org.springframework.integration/src/main/java/org/springframework/integration/aggregator/AbstractMessageBarrierConsumer.java
+++ b/org.springframework.integration/src/main/java/org/springframework/integration/aggregator/AbstractMessageBarrierConsumer.java
@@ -44,29 +44,29 @@ import org.springframework.util.CollectionUtils;
import org.springframework.util.ObjectUtils;
/**
- * Base class for {@link MessageBarrier}-based Message Consumers.
- * A {@link MessageConsumer} implementation that waits for a group of
- * {@link Message Messages} to arrive and processes them together.
- * Uses a {@link MessageBarrier} to store messages and to decide how
- * the messages should be released.
+ * Base class for {@link MessageBarrier}-based Message Consumers. A
+ * {@link MessageConsumer} implementation that waits for a group of
+ * {@link Message Messages} to arrive and processes them together. Uses a
+ * {@link MessageBarrier} to store messages and to decide how the messages
+ * should be released.
*
- * Each {@link Message} that is received by this consumer will be associated with
- * a group based upon the 'correlationId' property of its
+ * Each {@link Message} that is received by this consumer will be associated
+ * with a group based upon the 'correlationId' property of its
* header. If no such property is available, a {@link MessageHandlingException}
* will be thrown.
*
- * The 'timeout' value determines how long to wait for the
- * complete group after the arrival of the first {@link Message} of the group.
- * The default value is 1 minute. If the timeout elapses prior to completion,
- * then Messages with that timed-out 'correlationId' will be sent to the
+ * The 'timeout' value determines how long to wait for the complete
+ * group after the arrival of the first {@link Message} of the group. The
+ * default value is 1 minute. If the timeout elapses prior to completion, then
+ * Messages with that timed-out 'correlationId' will be sent to the
* 'discardChannel' if provided unless 'sendPartialResultsOnTimeout' is set to
* true in which case the incomplete group will be sent to the output channel.
*
* @author Mark Fisher
* @author Marius Bogoevici
*/
-public abstract class AbstractMessageBarrierConsumer extends AbstractMessageConsumer
- implements MessageProducer, TaskSchedulerAware, InitializingBean {
+public abstract class AbstractMessageBarrierConsumer extends AbstractMessageConsumer implements MessageProducer,
+ TaskSchedulerAware, InitializingBean {
public final static long DEFAULT_SEND_TIMEOUT = 1000;
@@ -76,7 +76,6 @@ public abstract class AbstractMessageBarrierConsumer extends AbstractMessageCons
public final static int DEFAULT_TRACKED_CORRRELATION_ID_CAPACITY = 1000;
-
protected final Log logger = LogFactory.getLog(this.getClass());
private MessageChannel outputChannel;
@@ -85,8 +84,7 @@ public abstract class AbstractMessageBarrierConsumer extends AbstractMessageCons
private volatile MessageChannel discardChannel;
- protected final ConcurrentMap