From 156987e29e886efae785487d2b8f8987884ad74b Mon Sep 17 00:00:00 2001 From: Andy Taylor Date: Thu, 7 May 2015 11:04:20 +0100 Subject: [PATCH] portability typo fix --- .../core/protocol/core/impl/BackwardsCompatibilityUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/BackwardsCompatibilityUtils.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/BackwardsCompatibilityUtils.java index b0efa8ea9b..84dda7d9c5 100644 --- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/BackwardsCompatibilityUtils.java +++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/protocol/core/impl/BackwardsCompatibilityUtils.java @@ -42,7 +42,7 @@ public class BackwardsCompatibilityUtils { if (tc != null) { - String className = tc.getFactoryClassName().replace("org.apache.activemq", "org.hornetq").replace("ActiveMQ", "HornetQ"); + String className = tc.getFactoryClassName().replace("org.apache.activemq.artemis", "org.hornetq").replace("ActiveMQ", "HornetQ"); return new TransportConfiguration(className, tc.getParams(), tc.getName()); } return tc;