NO-JIRA Fixing some javadoc statements

This commit is contained in:
Clebert Suconic 2020-07-09 12:08:24 -04:00
parent 3d3fda168b
commit 6254a70ddc
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@
</head> </head>
<body bgcolor="white"> <body bgcolor="white">
<h1>ActiveMQ Artemis Resource Adaptor</h1> <p>ActiveMQ Artemis Resource Adaptor</p>
</body> </body>
</html> </html>

View File

@ -32,7 +32,7 @@ import org.apache.activemq.artemis.util.ServerUtil;
/** /**
* This example demonstrates how you can listen on failover event on the client side * This example demonstrates how you can listen on failover event on the client side
* <p/> * <p>
* In this example there are two nodes running in a cluster, both server will be running for start, * In this example there are two nodes running in a cluster, both server will be running for start,
* but after a while the first server will crash. This will trigger a fail-over event * but after a while the first server will crash. This will trigger a fail-over event
*/ */

View File

@ -29,7 +29,7 @@ import org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory;
/** /**
* example shows how to specify Exclusive Queue when auto creating the Queue from client. * example shows how to specify Exclusive Queue when auto creating the Queue from client.
* <p> * <p>
* Step 11 & 12 also shows that messages will be sent to consumer2 after consumer1 is closed (consumer1 is receiving * Step 11 and 12 also shows that messages will be sent to consumer2 after consumer1 is closed (consumer1 is receiving
* all messages before it is closed) * all messages before it is closed)
*/ */