Repository: activemq-artemis Updated Branches: refs/heads/master 485400960 -> 9553de82b
ARTEMIS-1658 Fix Typo in ActivationSpec Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/9553de82 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/9553de82 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/9553de82 Branch: refs/heads/master Commit: 9553de82bb3e5bf6707b1aa13f4436d2ca519d3b Parents: 4854009 Author: Martyn Taylor <[email protected]> Authored: Mon Feb 5 18:39:19 2018 +0000 Committer: Martyn Taylor <[email protected]> Committed: Mon Feb 5 18:39:19 2018 +0000 ---------------------------------------------------------------------- .../apache/activemq/artemis/ra/inflow/ActiveMQActivationSpec.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/9553de82/artemis-ra/src/main/java/org/apache/activemq/artemis/ra/inflow/ActiveMQActivationSpec.java ---------------------------------------------------------------------- diff --git a/artemis-ra/src/main/java/org/apache/activemq/artemis/ra/inflow/ActiveMQActivationSpec.java b/artemis-ra/src/main/java/org/apache/activemq/artemis/ra/inflow/ActiveMQActivationSpec.java index 901135d..1252486 100644 --- a/artemis-ra/src/main/java/org/apache/activemq/artemis/ra/inflow/ActiveMQActivationSpec.java +++ b/artemis-ra/src/main/java/org/apache/activemq/artemis/ra/inflow/ActiveMQActivationSpec.java @@ -935,7 +935,7 @@ public class ActiveMQActivationSpec extends ConnectionFactoryProperties implemen result = 31 * result + (setupAttempts != null ? setupAttempts.hashCode() : 0); result = 31 * result + (setupInterval != null ? setupInterval.hashCode() : 0); result = 31 * result + (queuePrefix != null ? queuePrefix.hashCode() : 0); - result = 31 * result + (topicPrefix != null ? queuePrefix.hashCode() : 0); + result = 31 * result + (topicPrefix != null ? topicPrefix.hashCode() : 0); return result; } }
