[AMQ-7391] Minor typo fixed

Credit: Alexandre Fruchaud <mmacphail>
This commit is contained in:
Jean-Baptiste Onofré 2020-01-28 10:46:48 +01:00
parent 556698b163
commit 85851f7ce8
2 changed files with 7 additions and 7 deletions

View File

@ -266,7 +266,7 @@ public class MessageBrokerView {
if (view==null){
/**
* If auto destinatons are allowed (on by default) - this will create a Broker Destination
* If auto destinations are allowed (on by default) - this will create a Broker Destination
* if it doesn't exist. We could query the regionBroker first to check - but this affords more
* flexibility - e.g. you might want to set up a query on destination statistics before any
* messaging clients have started (and hence created the destination themselves

View File

@ -101,18 +101,18 @@ public abstract class NetworkConnector extends NetworkBridgeConfiguration implem
}
public void addExcludedDestination(ActiveMQDestination destiantion) {
this.excludedDestinations.add(destiantion);
public void addExcludedDestination(ActiveMQDestination destination) {
this.excludedDestinations.add(destination);
}
public void addStaticallyIncludedDestination(ActiveMQDestination destiantion) {
this.staticallyIncludedDestinations.add(destiantion);
public void addStaticallyIncludedDestination(ActiveMQDestination destination) {
this.staticallyIncludedDestinations.add(destination);
}
public void addDynamicallyIncludedDestination(ActiveMQDestination destiantion) {
this.dynamicallyIncludedDestinations.add(destiantion);
public void addDynamicallyIncludedDestination(ActiveMQDestination destination) {
this.dynamicallyIncludedDestinations.add(destination);
}
public ConnectionFilter getConnectionFilter() {