Repository: activemq Updated Branches: refs/heads/master 88ec9dad9 -> 5772e7bed
https://issues.apache.org/jira/browse/AMQ-6080 fixing typos Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/5772e7be Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/5772e7be Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/5772e7be Branch: refs/heads/master Commit: 5772e7bed88198f57fabb08c2f48a1de68dea72c Parents: 88ec9da Author: Christopher L. Shannon (cshannon) <[email protected]> Authored: Tue Dec 8 13:14:01 2015 +0000 Committer: Christopher L. Shannon (cshannon) <[email protected]> Committed: Tue Dec 8 13:18:11 2015 +0000 ---------------------------------------------------------------------- .../main/java/org/apache/activemq/broker/BrokerService.java | 2 +- .../apache/activemq/network/NetworkBridgeConfiguration.java | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/5772e7be/activemq-broker/src/main/java/org/apache/activemq/broker/BrokerService.java ---------------------------------------------------------------------- diff --git a/activemq-broker/src/main/java/org/apache/activemq/broker/BrokerService.java b/activemq-broker/src/main/java/org/apache/activemq/broker/BrokerService.java index 5e7dd97..806fa5a 100644 --- a/activemq-broker/src/main/java/org/apache/activemq/broker/BrokerService.java +++ b/activemq-broker/src/main/java/org/apache/activemq/broker/BrokerService.java @@ -208,7 +208,7 @@ public class BrokerService implements Service { */ private boolean useVirtualDestSubs = false; /** - * Whether or no the creation of destinations that match virtual destinations + * Whether or not the creation of destinations that match virtual destinations * should cause network demand */ private boolean useVirtualDestSubsOnCreation = false; http://git-wip-us.apache.org/repos/asf/activemq/blob/5772e7be/activemq-broker/src/main/java/org/apache/activemq/network/NetworkBridgeConfiguration.java ---------------------------------------------------------------------- diff --git a/activemq-broker/src/main/java/org/apache/activemq/network/NetworkBridgeConfiguration.java b/activemq-broker/src/main/java/org/apache/activemq/network/NetworkBridgeConfiguration.java index 09127a1..796b14f 100644 --- a/activemq-broker/src/main/java/org/apache/activemq/network/NetworkBridgeConfiguration.java +++ b/activemq-broker/src/main/java/org/apache/activemq/network/NetworkBridgeConfiguration.java @@ -466,6 +466,14 @@ public class NetworkBridgeConfiguration { this.checkDuplicateMessagesOnDuplex = checkDuplicateMessagesOnDuplex; } + public boolean isUseVirtualDestSubs() { + return useVirtualDestSubs; + } + + /** + * This was a typo, so this is deprecated as of 5.13.1 + */ + @Deprecated public boolean isUseVirtualDestSus() { return useVirtualDestSubs; }
