This is an automated email from the ASF dual-hosted git repository.

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 361768f  Fix CS
361768f is described below

commit 361768f443acee67ccf119cf3e5290ae55fe29b3
Author: Luca Burgazzoli <[email protected]>
AuthorDate: Mon Feb 15 11:47:35 2021 +0100

    Fix CS
---
 .../camel/component/pulsar/PulsarConsumerAcknowledgementTest.java      | 3 +--
 .../camel/component/pulsar/PulsarConsumerDeadLetterPolicyTest.java     | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git 
a/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarConsumerAcknowledgementTest.java
 
b/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarConsumerAcknowledgementTest.java
index f0c3eb5..eec6d71 100644
--- 
a/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarConsumerAcknowledgementTest.java
+++ 
b/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarConsumerAcknowledgementTest.java
@@ -50,6 +50,7 @@ public class PulsarConsumerAcknowledgementTest extends 
CamelTestSupport {
 
     private static final Logger LOGGER = 
LoggerFactory.getLogger(PulsarConsumerAcknowledgementTest.class);
     private static final String TOPIC_URI = 
"persistent://public/default/camel-topic-";
+    private static int topicId;
 
     private Endpoint from;
 
@@ -57,8 +58,6 @@ public class PulsarConsumerAcknowledgementTest extends 
CamelTestSupport {
 
     private Producer<String> producer;
 
-    private static int topicId = 0;
-
     public String getPulsarBrokerUrl() {
         return service.getPulsarBrokerUrl();
     }
diff --git 
a/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarConsumerDeadLetterPolicyTest.java
 
b/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarConsumerDeadLetterPolicyTest.java
index 31dd28c..8420d99 100644
--- 
a/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarConsumerDeadLetterPolicyTest.java
+++ 
b/components/camel-pulsar/src/test/java/org/apache/camel/component/pulsar/PulsarConsumerDeadLetterPolicyTest.java
@@ -42,6 +42,7 @@ import static org.junit.jupiter.api.Assertions.assertNull;
 public class PulsarConsumerDeadLetterPolicyTest extends PulsarTestSupport {
     private static final Logger LOGGER = 
LoggerFactory.getLogger(PulsarConsumerDeadLetterPolicyTest.class);
     private static final String TOPIC_URI = 
"persistent://public/default/camel-topic-";
+    private static int topicId;
 
     @EndpointInject("mock:result")
     private MockEndpoint to;
@@ -51,8 +52,6 @@ public class PulsarConsumerDeadLetterPolicyTest extends 
PulsarTestSupport {
 
     private Producer<String> producer;
 
-    private static int topicId = 0;
-
     private String topicUri;
 
     @Override

Reply via email to