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:21:00 UTC

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

Repository: activemq
Updated Branches:
  refs/heads/master e83bb6dc3 -> 8417ce537


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



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

Branch: refs/heads/master
Commit: 8417ce537b2cb96965827ebfb793f31814ba1ddd
Parents: e83bb6d
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:20:56 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/8417ce53/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;