This commit is contained in:
Stephane Nicoll 2018-02-23 15:18:46 +01:00
parent 13b736b1cd
commit 9b61df6a2b
1 changed files with 4 additions and 4 deletions

View File

@ -809,10 +809,6 @@ public class RabbitProperties {
this.initialInterval = initialInterval;
}
public void setMaxInterval(Duration maxInterval) {
this.maxInterval = maxInterval;
}
public double getMultiplier() {
return this.multiplier;
}
@ -825,6 +821,10 @@ public class RabbitProperties {
return this.maxInterval;
}
public void setMaxInterval(Duration maxInterval) {
this.maxInterval = maxInterval;
}
}
public static class ListenerRetry extends Retry {