We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b321615 commit ebf8921Copy full SHA for ebf8921
src/main/java/net/tascalate/concurrent/DelayPolicy.java
@@ -104,7 +104,7 @@ default DelayPolicy<T> withMinDelay(Duration minDelay) {
104
}
105
106
default DelayPolicy<T> withMinDelay(long minDelay, TimeUnit timeUnit) {
107
- return withMaxDelay(Timeouts.toDuration(minDelay, timeUnit));
+ return withMinDelay(Timeouts.toDuration(minDelay, timeUnit));
108
109
110
default DelayPolicy<T> withMinDelay(long minDelayMillis) {
0 commit comments