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

commit 830bac84352a48b487e6d46ae4dbbea6a8a54c9a
Author: Otavio Rodolfo Piske <angusyo...@gmail.com>
AuthorDate: Thu Jun 23 07:15:37 2022 +0200

    (chores) camel-spring-xml: documented unused parameters
---
 .../apache/camel/spring/xml/ContextScanRouteBuilderFinder.java    | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git 
a/components/camel-spring-xml/src/main/java/org/apache/camel/spring/xml/ContextScanRouteBuilderFinder.java
 
b/components/camel-spring-xml/src/main/java/org/apache/camel/spring/xml/ContextScanRouteBuilderFinder.java
index 5809251db03..b63d674ed67 100644
--- 
a/components/camel-spring-xml/src/main/java/org/apache/camel/spring/xml/ContextScanRouteBuilderFinder.java
+++ 
b/components/camel-spring-xml/src/main/java/org/apache/camel/spring/xml/ContextScanRouteBuilderFinder.java
@@ -72,7 +72,13 @@ public class ContextScanRouteBuilderFinder {
         }
     }
 
-    protected boolean shouldIgnoreBean(Object bean) {
+    /**
+     * Whether or not to ignore the bean
+     *
+     * @param  bean the bean to be checked if should be ignored or not
+     * @return
+     */
+    protected boolean shouldIgnoreBean(@SuppressWarnings("unused") Object 
bean) {
         return false;
     }
 

Reply via email to