mirror of https://github.com/apache/activemq.git
[AMQ-7391] Minor typo fixed
Credit: Alexandre Fruchaud <mmacphail>
This commit is contained in:
parent
556698b163
commit
85851f7ce8
|
@ -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
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue