javadoc: Fix doclint {@code} within <code> warnings
Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/99f404ea
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/99f404ea
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/99f404ea
Branch: refs/heads/master
Commit: 99f404ea0a6f483a618b8d8cb17299f5a533d29d
Parents: ddd1559
Author: Ville Skyttä <[email protected]>
Authored: Sun Oct 9 17:51:39 2016 +0300
Committer: Clebert Suconic <[email protected]>
Committed: Mon Oct 10 10:02:49 2016 +0200
----------------------------------------------------------------------
.../apache/activemq/artemis/junit/ActiveMQConsumerResource.java | 4 ++--
.../activemq/artemis/junit/ActiveMQDynamicProducerResource.java | 4 ++--
.../apache/activemq/artemis/junit/ActiveMQProducerResource.java | 4 ++--
.../apache/activemq/artemis/junit/EmbeddedActiveMQResource.java | 4 ++--
.../org/apache/activemq/artemis/junit/EmbeddedJMSResource.java | 4 ++--
5 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/99f404ea/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQConsumerResource.java
----------------------------------------------------------------------
diff --git
a/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQConsumerResource.java
b/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQConsumerResource.java
index 8af0610..c4a59ce 100644
---
a/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQConsumerResource.java
+++
b/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQConsumerResource.java
@@ -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();
http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/99f404ea/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQDynamicProducerResource.java
----------------------------------------------------------------------
diff --git
a/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQDynamicProducerResource.java
b/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQDynamicProducerResource.java
index 7a34cf5..03b8c2b 100644
---
a/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQDynamicProducerResource.java
+++
b/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQDynamicProducerResource.java
@@ -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" );
http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/99f404ea/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQProducerResource.java
----------------------------------------------------------------------
diff --git
a/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQProducerResource.java
b/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQProducerResource.java
index a443a18..478bf8c 100644
---
a/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQProducerResource.java
+++
b/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/ActiveMQProducerResource.java
@@ -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" );
http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/99f404ea/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedActiveMQResource.java
----------------------------------------------------------------------
diff --git
a/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedActiveMQResource.java
b/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedActiveMQResource.java
index b9e12e7..77c74ce 100644
---
a/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedActiveMQResource.java
+++
b/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedActiveMQResource.java
@@ -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
* }
http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/99f404ea/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedJMSResource.java
----------------------------------------------------------------------
diff --git
a/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedJMSResource.java
b/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedJMSResource.java
index 525657b..c7ef8f5 100644
---
a/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedJMSResource.java
+++
b/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedJMSResource.java
@@ -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
* }