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/08/24 04:30:00 UTC

[camel] branch main updated: (chores) camel-core: polished the code and adjusted style (#11190)

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 f7bfff4c85d (chores) camel-core: polished the code and adjusted style (#11190)
f7bfff4c85d is described below

commit f7bfff4c85d91296e2e4e7e5993219f129507af0
Author: Otavio Rodolfo Piske <or...@users.noreply.github.com>
AuthorDate: Thu Aug 24 06:29:54 2023 +0200

    (chores) camel-core: polished the code and adjusted style (#11190)
---
 .../apache/camel/component/file/FileConsumerBeginRenameStrategyTest.java | 1 -
 .../camel/impl/DefaultProducerTemplateWithCustomCacheMaxSizeTest.java    | 1 -
 2 files changed, 2 deletions(-)

diff --git a/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerBeginRenameStrategyTest.java b/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerBeginRenameStrategyTest.java
index d7148f6761f..f10306a2bd9 100644
--- a/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerBeginRenameStrategyTest.java
+++ b/core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerBeginRenameStrategyTest.java
@@ -54,7 +54,6 @@ public class FileConsumerBeginRenameStrategyTest extends ContextTestSupport {
             fw.write("I was there once in London");
             fw.flush();
         }
-        ;
 
         MockEndpoint mock = getMockEndpoint("mock:report");
         mock.expectedBodiesReceived("Hello London");
diff --git a/core/camel-core/src/test/java/org/apache/camel/impl/DefaultProducerTemplateWithCustomCacheMaxSizeTest.java b/core/camel-core/src/test/java/org/apache/camel/impl/DefaultProducerTemplateWithCustomCacheMaxSizeTest.java
index 6af4fe4f2b9..c7833f0a86f 100644
--- a/core/camel-core/src/test/java/org/apache/camel/impl/DefaultProducerTemplateWithCustomCacheMaxSizeTest.java
+++ b/core/camel-core/src/test/java/org/apache/camel/impl/DefaultProducerTemplateWithCustomCacheMaxSizeTest.java
@@ -78,6 +78,5 @@ public class DefaultProducerTemplateWithCustomCacheMaxSizeTest extends ContextTe
                 "Should have thrown an exception");
 
         assertEquals("Property CamelMaximumCachePoolSize must be a positive number, was: 0", e.getCause().getMessage());
-        ;
     }
 }