File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
spring-core/src/main/java/org/springframework/util/backoff Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public FixedBackOff() {
49
49
}
50
50
51
51
/**
52
- * Create an instance.
52
+ * Create an instance with the supplied settings .
53
53
* @param interval the interval between two attempts
54
54
* @param maxAttempts the maximum number of attempts
55
55
*/
@@ -74,14 +74,14 @@ public long getInterval() {
74
74
}
75
75
76
76
/**
77
- * Set the maximum number of attempts in milliseconds .
77
+ * Set the maximum number of attempts.
78
78
*/
79
79
public void setMaxAttempts (long maxAttempts ) {
80
80
this .maxAttempts = maxAttempts ;
81
81
}
82
82
83
83
/**
84
- * Return the maximum number of attempts in milliseconds .
84
+ * Return the maximum number of attempts.
85
85
*/
86
86
public long getMaxAttempts () {
87
87
return this .maxAttempts ;
You can’t perform that action at this time.
0 commit comments