This commit is contained in:
Stephane Nicoll 2018-06-07 13:34:18 +02:00
parent a9e56aa089
commit 34167dc163
1 changed files with 2 additions and 6 deletions

View File

@ -70,9 +70,9 @@ public class ActiveMQProperties {
*/
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() {
return this.brokerUrl;
@ -134,10 +134,6 @@ public class ActiveMQProperties {
return this.pool;
}
public void setPool(Pool pool) {
this.pool = pool;
}
public Packages getPackages() {
return this.packages;
}