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

[camel] branch camel-3.18.x updated: [Minor] Apply formatter

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

gzurowski pushed a commit to branch camel-3.18.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.18.x by this push:
     new 3c56929d09e [Minor] Apply formatter
3c56929d09e is described below

commit 3c56929d09e407930cb0bfa51e78bd36cffd4c2b
Author: Gregor Zurowski <gr...@zurowski.org>
AuthorDate: Sat Jun 10 14:21:55 2023 +0200

    [Minor] Apply formatter
---
 .../file/strategy/FileChangedReadLockMinAgeShortCircuitTest.java       | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/core/camel-core/src/test/java/org/apache/camel/component/file/strategy/FileChangedReadLockMinAgeShortCircuitTest.java b/core/camel-core/src/test/java/org/apache/camel/component/file/strategy/FileChangedReadLockMinAgeShortCircuitTest.java
index 356f0b41830..4c18a118f6e 100644
--- a/core/camel-core/src/test/java/org/apache/camel/component/file/strategy/FileChangedReadLockMinAgeShortCircuitTest.java
+++ b/core/camel-core/src/test/java/org/apache/camel/component/file/strategy/FileChangedReadLockMinAgeShortCircuitTest.java
@@ -60,7 +60,8 @@ public class FileChangedReadLockMinAgeShortCircuitTest extends ContextTestSuppor
         return new RouteBuilder() {
             @Override
             public void configure() throws Exception {
-                from(fileUri("in?initialDelay=500&delay=10&readLock=changed&readLockMinAge=1000&readLockCheckInterval=10000&readLockTimeout=20000"))
+                from(fileUri(
+                        "in?initialDelay=500&delay=10&readLock=changed&readLockMinAge=1000&readLockCheckInterval=10000&readLockTimeout=20000"))
                                 .to(fileUri("out"), "mock:result");
             }
         };