ARTEMIS-569 correct method spelling

This commit is contained in:
jbertram 2016-07-28 08:12:57 -05:00
parent ee84d042b6
commit c408ece7e7
2 changed files with 2 additions and 2 deletions

View File

@ -290,7 +290,7 @@ public final class ClusterConnectionConfiguration implements Serializable {
return producerWindowSize; return producerWindowSize;
} }
public ClusterConnectionConfiguration setProducerindowSize(int producerWindowSize) { public ClusterConnectionConfiguration setProducerWindowSize(int producerWindowSize) {
this.producerWindowSize = producerWindowSize; this.producerWindowSize = producerWindowSize;
return this; return this;
} }

View File

@ -1373,7 +1373,7 @@ public final class FileConfigurationParser extends XMLConfigurationUtil {
.setMessageLoadBalancingType(messageLoadBalancingType) .setMessageLoadBalancingType(messageLoadBalancingType)
.setMaxHops(maxHops) .setMaxHops(maxHops)
.setConfirmationWindowSize(confirmationWindowSize) .setConfirmationWindowSize(confirmationWindowSize)
.setProducerindowSize(producerWindowSize) .setProducerWindowSize(producerWindowSize)
.setAllowDirectConnectionsOnly(allowDirectConnectionsOnly) .setAllowDirectConnectionsOnly(allowDirectConnectionsOnly)
.setClusterNotificationInterval(clusterNotificationInterval) .setClusterNotificationInterval(clusterNotificationInterval)
.setClusterNotificationAttempts(clusterNotificationAttempts); .setClusterNotificationAttempts(clusterNotificationAttempts);