From 8c3f699d27087618d63ba47feba3ebf0e270c907 Mon Sep 17 00:00:00 2001 From: Matteo Baccan Date: Mon, 14 Feb 2022 10:20:19 +0100 Subject: [PATCH] Typo error: double semicolon at the end of line --- .../src/main/webapp/plugin/js/components/queues.js | 2 +- docs/user-manual/en/connection-ttl.md | 2 +- .../openwire/management/OpenWireManagementTest.java | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/queues.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/queues.js index 42765479f8..9dc344b3db 100644 --- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/queues.js +++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/queues.js @@ -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]; diff --git a/docs/user-manual/en/connection-ttl.md b/docs/user-manual/en/connection-ttl.md index 06430315be..1f06569731 100644 --- a/docs/user-manual/en/connection-ttl.md +++ b/docs/user-manual/en/connection-ttl.md @@ -21,7 +21,7 @@ ClientSession session = null; try { locator = ActiveMQClient.createServerLocatorWithoutHA(..); - sf = locator.createClientSessionFactory();; + sf = locator.createClientSessionFactory(); session = sf.createSession(...); diff --git a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/openwire/management/OpenWireManagementTest.java b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/openwire/management/OpenWireManagementTest.java index 179269c8e9..e451c233ba 100644 --- a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/openwire/management/OpenWireManagementTest.java +++ b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/openwire/management/OpenWireManagementTest.java @@ -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;