You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2017/06/02 18:22:16 UTC

[3/3] activemq git commit: AMQ-6697 Make the MBean explicitly final for java 7 support

AMQ-6697 Make the MBean explicitly final for java 7 support

(cherry picked from commit 8417ce537b2cb96965827ebfb793f31814ba1ddd)


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

Branch: refs/heads/activemq-5.14.x
Commit: e38ac94a27347c89dddcd30c7a3e6063a69308dd
Parents: 0be8b63
Author: Timothy Bish <ta...@gmail.com>
Authored: Fri Jun 2 14:20:56 2017 -0400
Committer: Timothy Bish <ta...@gmail.com>
Committed: Fri Jun 2 14:22:03 2017 -0400

----------------------------------------------------------------------
 .../test/java/org/apache/activemq/transport/stomp/Stomp11Test.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq/blob/e38ac94a/activemq-stomp/src/test/java/org/apache/activemq/transport/stomp/Stomp11Test.java
----------------------------------------------------------------------
diff --git a/activemq-stomp/src/test/java/org/apache/activemq/transport/stomp/Stomp11Test.java b/activemq-stomp/src/test/java/org/apache/activemq/transport/stomp/Stomp11Test.java
index 5050399..e12eaca 100644
--- a/activemq-stomp/src/test/java/org/apache/activemq/transport/stomp/Stomp11Test.java
+++ b/activemq-stomp/src/test/java/org/apache/activemq/transport/stomp/Stomp11Test.java
@@ -1153,7 +1153,7 @@ public class Stomp11Test extends StompTestSupport {
         String f = stompConnection.receiveFrame();
         assertTrue(f.startsWith("CONNECTED"));
 
-        QueueViewMBean queueView = getProxyToQueue(getQueueName());
+        final QueueViewMBean queueView = getProxyToQueue(getQueueName());
         assertEquals(1, queueView.getQueueSize());
 
         frame = "BEGIN\n" + "transaction: tx1\n" + "\n\n" + Stomp.NULL;