Formatting

This commit is contained in:
Dave Syer
2020-01-20 11:36:38 +00:00
parent 0f1eb43f59
commit 13ae03c621
2 changed files with 4 additions and 4 deletions

View File

@@ -38,8 +38,8 @@ import java.lang.annotation.Target;
public @interface Retryable {
/**
* Name of method in this class to use for recover.
* Method had to be marked with {@link Recover} annotation.
* Name of method in this class to use for recover. Method had to be marked with
* {@link Recover} annotation.
* @return the name of recover method
*/
String recover() default "";

View File

@@ -37,8 +37,8 @@ import java.util.Random;
* {@link ExponentialBackOffPolicy} yields: [50, 100, 200, 400, 800]
*
* {@link ExponentialRandomBackOffPolicy} may yield [76, 151, 304, 580, 901] or [53, 190,
* 267, 451, 815] (random distributed values within the ranges of [50-100, 100-200, 200-400,
* 400-800, 800-1600])
* 267, 451, 815] (random distributed values within the ranges of [50-100, 100-200,
* 200-400, 400-800, 800-1600])
*
* @author Jon Travis
* @author Dave Syer