javadoc: Fix doclint {@code} within <code> warnings
This commit is contained in:
parent
ddd1559fbe
commit
99f404ea0a
|
@ -30,10 +30,10 @@ import org.apache.activemq.artemis.api.core.client.ServerLocator;
|
|||
*
|
||||
* <pre><code>
|
||||
* public class SimpleTest {
|
||||
* {@code @Rule}
|
||||
* @Rule
|
||||
* public ActiveMQConsumerResource client = new ActiveMQProducerResource( "vm://0", "test.queue" );
|
||||
*
|
||||
* {@code @Test}
|
||||
* @Test
|
||||
* public void testSomething() throws Exception {
|
||||
* // Use the embedded client here
|
||||
* ClientMessage message = client.receiveMessage();
|
||||
|
|
|
@ -31,10 +31,10 @@ import org.apache.activemq.artemis.api.core.client.ServerLocator;
|
|||
*
|
||||
* <pre><code>
|
||||
* public class SimpleTest {
|
||||
* {@code @Rule}
|
||||
* @Rule
|
||||
* public ActiveMQDynamicProducerResource producer = new ActiveMQDynamicProducerResource( "vm://0");
|
||||
*
|
||||
* {@code @Test}
|
||||
* @Test
|
||||
* public void testSomething() throws Exception {
|
||||
* // Use the embedded ClientProducer here
|
||||
* producer.sendMessage( "test.address", "String Body" );
|
||||
|
|
|
@ -32,10 +32,10 @@ import org.apache.activemq.artemis.api.core.client.ServerLocator;
|
|||
*
|
||||
* <pre><code>
|
||||
* public class SimpleTest {
|
||||
* {@code @Rule}
|
||||
* @Rule
|
||||
* public ActiveMQProducerResource producer = new ActiveMQProducerResource( "vm://0", "test.queue");
|
||||
*
|
||||
* {@code @Test}
|
||||
* @Test
|
||||
* public void testSomething() throws Exception {
|
||||
* // Use the embedded ClientProducer here
|
||||
* producer.sendMessage( "String Body" );
|
||||
|
|
|
@ -52,10 +52,10 @@ import org.slf4j.LoggerFactory;
|
|||
*
|
||||
* <pre><code>
|
||||
* public class SimpleTest {
|
||||
* {@code @Rule}
|
||||
* @Rule
|
||||
* public EmbeddedActiveMQResource server = new EmbeddedActiveMQResource();
|
||||
*
|
||||
* {@code @Test}
|
||||
* @Test
|
||||
* public void testSomething() throws Exception {
|
||||
* // Use the embedded server here
|
||||
* }
|
||||
|
|
|
@ -63,10 +63,10 @@ import org.slf4j.LoggerFactory;
|
|||
*
|
||||
* <pre><code>
|
||||
* public class SimpleTest {
|
||||
* {@code @Rule}
|
||||
* @Rule
|
||||
* public EmbeddedJMSResource server = new EmbeddedJMSResource();
|
||||
*
|
||||
* {@code @Test}
|
||||
* @Test
|
||||
* public void testSomething() throws Exception {
|
||||
* // Use the embedded server here
|
||||
* }
|
||||
|
|
Loading…
Reference in New Issue