From 9b61df6a2bb66c03bf9a92c5f701546db6a4f148 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 23 Feb 2018 15:18:46 +0100 Subject: [PATCH] Polish --- .../boot/autoconfigure/amqp/RabbitProperties.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java index a6904a05eb..7d1a242009 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java @@ -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 {