Skip to content

Commit

Permalink
Typo error: double semicolon at the end of line
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobaccan authored and clebertsuconic committed Feb 17, 2022
1 parent dc1c269 commit 8c3f699
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down
2 changes: 1 addition & 1 deletion docs/user-manual/en/connection-ttl.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ClientSession session = null;
try {
locator = ActiveMQClient.createServerLocatorWithoutHA(..);

sf = locator.createClientSessionFactory();;
sf = locator.createClientSessionFactory();

session = sf.createSession(...);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 8c3f699

Please sign in to comment.