Fix javadoc typo

This commit is contained in:
Gary Russell
2020-08-28 10:01:20 -04:00
parent 1bf4669920
commit 8fd79d388d

View File

@@ -92,7 +92,8 @@ public class SimpleRetryPolicy implements RetryPolicy {
* @param maxAttempts the maximum number of attempts
* @param retryableExceptions the map of exceptions that are retryable based on the
* map value (true/false).
* @param traverseCauses is this clause traversable
* @param traverseCauses true to traverse the exception cause chain until a classified
* exception is found or the root cause is reached.
*/
public SimpleRetryPolicy(int maxAttempts, Map<Class<? extends Throwable>, Boolean> retryableExceptions,
boolean traverseCauses) {
@@ -108,7 +109,8 @@ public class SimpleRetryPolicy implements RetryPolicy {
* @param maxAttempts the maximum number of attempts
* @param retryableExceptions the map of exceptions that are retryable based on the
* map value (true/false).
* @param traverseCauses is this clause traversable
* @param traverseCauses true to traverse the exception cause chain until a classified
* exception is found or the root cause is reached.
* @param defaultValue the default action.
*/
public SimpleRetryPolicy(int maxAttempts, Map<Class<? extends Throwable>, Boolean> retryableExceptions,