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

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


The following commit(s) were added to refs/heads/camel-3.20.x by this push:
     new 34b902718c4 CAMEL-20094: Fix checkstyle violation
34b902718c4 is described below

commit 34b902718c470a1303f7f61dfb7c77a08a03cf6f
Author: Nicolas Filotto <[email protected]>
AuthorDate: Wed Nov 29 12:37:26 2023 +0100

    CAMEL-20094: Fix checkstyle violation
---
 .../src/main/java/org/apache/camel/tooling/util/PackageHelper.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/tooling/camel-tooling-util/src/main/java/org/apache/camel/tooling/util/PackageHelper.java
 
b/tooling/camel-tooling-util/src/main/java/org/apache/camel/tooling/util/PackageHelper.java
index 1f5be498cae..0c4192a5e64 100644
--- 
a/tooling/camel-tooling-util/src/main/java/org/apache/camel/tooling/util/PackageHelper.java
+++ 
b/tooling/camel-tooling-util/src/main/java/org/apache/camel/tooling/util/PackageHelper.java
@@ -90,7 +90,7 @@ public final class PackageHelper {
     }
 
     public static Set<File> findJsonFiles(File rootDir, Set<File> files) {
-        return findJsonFiles(rootDir, files, (f) -> true);
+        return findJsonFiles(rootDir, files, f -> true);
     }
 
     public static Set<File> findJsonFiles(File rootDir, Set<File> files, 
Predicate<File> filter) {

Reply via email to