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

(cherry picked from commit 8417ce537b)
This commit is contained in:
Timothy Bish 2017-06-02 14:20:56 -04:00
parent 0be8b63fde
commit e38ac94a27
1 changed files with 1 additions and 1 deletions

View File

@ -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;