You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/06/22 14:22:03 UTC

[camel] branch main updated: (chores) camel-core: fixed checkstyle issues

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

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


The following commit(s) were added to refs/heads/main by this push:
     new dfa3480c11c (chores) camel-core: fixed checkstyle issues
dfa3480c11c is described below

commit dfa3480c11cdbcfac14587374e875ebd39fe5adf
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Jun 22 16:21:46 2023 +0200

    (chores) camel-core: fixed checkstyle issues
---
 .../java/org/apache/camel/processor/WireTapAbortPolicyTest.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/camel-core/src/test/java/org/apache/camel/processor/WireTapAbortPolicyTest.java b/core/camel-core/src/test/java/org/apache/camel/processor/WireTapAbortPolicyTest.java
index 0fbdc41cd8e..566fe2e0de2 100644
--- a/core/camel-core/src/test/java/org/apache/camel/processor/WireTapAbortPolicyTest.java
+++ b/core/camel-core/src/test/java/org/apache/camel/processor/WireTapAbortPolicyTest.java
@@ -41,13 +41,13 @@ import static org.junit.jupiter.api.Assertions.fail;
 @Isolated
 public class WireTapAbortPolicyTest extends ContextTestSupport {
 
-    final CountDownLatch latch = new CountDownLatch(1);
-    final CyclicBarrier barrier = new CyclicBarrier(2);
-
     protected MockEndpoint tap;
     protected MockEndpoint result;
     protected ExecutorService pool;
 
+    private final CountDownLatch latch = new CountDownLatch(1);
+    private final CyclicBarrier barrier = new CyclicBarrier(2);
+
     @Override
     @AfterEach
     public void tearDown() throws Exception {