javadoc: Fix doclint {@code} within <code> warnings

This commit is contained in:
Ville Skyttä 2016-10-09 17:51:39 +03:00 committed by Clebert Suconic
parent ddd1559fbe
commit 99f404ea0a
5 changed files with 10 additions and 10 deletions

View File

@ -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();

View File

@ -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" );

View File

@ -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" );

View File

@ -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
* }

View File

@ -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
* }