Typo error: double semicolon at the end of line
This commit is contained in:
parent
dc1c269b36
commit
8c3f699d27
|
@ -285,7 +285,7 @@ var Artemis;
|
|||
var item = ctrl.queues[idx];
|
||||
var nid = getQueuesNid(item, $location);
|
||||
artemisQueue.queue = { queue: item.name };
|
||||
$location.path("artemis/artemisConsumers").search({"tab": "artemis", "nid": nid});;
|
||||
$location.path("artemis/artemisConsumers").search({"tab": "artemis", "nid": nid});
|
||||
};
|
||||
browseQueue = function (idx) {
|
||||
var item = ctrl.queues[idx];
|
||||
|
|
|
@ -21,7 +21,7 @@ ClientSession session = null;
|
|||
try {
|
||||
locator = ActiveMQClient.createServerLocatorWithoutHA(..);
|
||||
|
||||
sf = locator.createClientSessionFactory();;
|
||||
sf = locator.createClientSessionFactory();
|
||||
|
||||
session = sf.createSession(...);
|
||||
|
||||
|
|
|
@ -51,8 +51,8 @@ public class OpenWireManagementTest extends OpenWireTestBase {
|
|||
|
||||
private ActiveMQServerControl serverControl;
|
||||
private SimpleString queueName1 = new SimpleString("queue1");
|
||||
private SimpleString queueName2 = new SimpleString("queue2");;
|
||||
private SimpleString queueName3 = new SimpleString("queue3");;
|
||||
private SimpleString queueName2 = new SimpleString("queue2");
|
||||
private SimpleString queueName3 = new SimpleString("queue3");
|
||||
|
||||
private ConnectionFactory factory;
|
||||
|
||||
|
|
Loading…
Reference in New Issue