Repository: activemq-artemis
Updated Branches:
  refs/heads/master 075004c4f -> 4ff397ba7


ARTEMIS-1658 Add prefix option to ActivationSpec 

checkstyle ifx

Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/f08cd875
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/f08cd875
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/f08cd875

Branch: refs/heads/master
Commit: f08cd87526edf648e83901a72ba151f98b41b8dd
Parents: 075004c
Author: Michael André Pearce <michael.andre.pea...@me.com>
Authored: Sat Feb 3 07:46:23 2018 +0000
Committer: Michael André Pearce <michael.andre.pea...@me.com>
Committed: Sat Feb 3 07:46:23 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/f08cd875/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 d46b2a7..008ca67 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 ? queuePrefix.hashCode() :0 
);
       return result;
    }
 }

Reply via email to