Commit 34167dc1 authored by Stephane Nicoll's avatar Stephane Nicoll

Polish

parent a9e56aa0
...@@ -70,9 +70,9 @@ public class ActiveMQProperties { ...@@ -70,9 +70,9 @@ public class ActiveMQProperties {
*/ */
private Duration sendTimeout = Duration.ofMillis(0); private Duration sendTimeout = Duration.ofMillis(0);
private Pool pool = new Pool(); private final Pool pool = new Pool();
private Packages packages = new Packages(); private final Packages packages = new Packages();
public String getBrokerUrl() { public String getBrokerUrl() {
return this.brokerUrl; return this.brokerUrl;
...@@ -134,10 +134,6 @@ public class ActiveMQProperties { ...@@ -134,10 +134,6 @@ public class ActiveMQProperties {
return this.pool; return this.pool;
} }
public void setPool(Pool pool) {
this.pool = pool;
}
public Packages getPackages() { public Packages getPackages() {
return this.packages; return this.packages;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment