This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/main by this push:
new 8c3f699 Typo error: double semicolon at the end of line
8c3f699 is described below
commit 8c3f699d27087618d63ba47feba3ebf0e270c907
Author: Matteo Baccan <[email protected]>
AuthorDate: Mon Feb 14 10:20:19 2022 +0100
Typo error: double semicolon at the end of line
---
.../artemis-plugin/src/main/webapp/plugin/js/components/queues.js | 2 +-
docs/user-manual/en/connection-ttl.md | 2 +-
.../tests/integration/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 4276547..9dc344b 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 0643031..1f06569 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 179269c..e451c23 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;