From 8020ef3e23f731b51dc563cbec3d8a67015359b3 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Thu, 31 Mar 2011 09:59:46 -0400 Subject: [PATCH] AMQP-32 fixing javadoc warnings --- .../listener/SimpleMessageListenerContainer.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/listener/SimpleMessageListenerContainer.java b/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/listener/SimpleMessageListenerContainer.java index adbe8481..5e12e79f 100644 --- a/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/listener/SimpleMessageListenerContainer.java +++ b/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/listener/SimpleMessageListenerContainer.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2010 the original author or authors. + * Copyright 2002-2011 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at @@ -111,16 +111,15 @@ public class SimpleMessageListenerContainer extends AbstractMessageListenerConta * provided here should not contain a transaction interceptor (otherwise two transactions would be be applied). *

* - * @param advices the advice chain to set + * @param adviceChain the advice chain to set */ public void setAdviceChain(Advice[] adviceChain) { this.adviceChain = adviceChain; } /** - * Specify the interval between recovery attempts, in milliseconds. The default is 5000 ms, that is, 5 - * seconds. - * @see #handleConsumerStartupFailure + * Specify the interval between recovery attempts, in milliseconds. + * The default is 5000 ms, that is, 5 seconds. */ public void setRecoveryInterval(long recoveryInterval) { this.recoveryInterval = recoveryInterval; @@ -180,7 +179,7 @@ public class SimpleMessageListenerContainer extends AbstractMessageListenerConta * Tells the container how many messages to process in a single transaction (if the channel is transactional). For * best results it should be less than or equal to {@link #setPrefetchCount(int) the prefetch count}. * - * @param prefetchCount the prefetch count + * @param txSize the transaction size */ public void setTxSize(int txSize) { this.txSize = txSize;