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

gnodet 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 d8eb4b77eff4 [build] non-varargs call of varargs method with inexact 
argument type for last parameter (#21992)
d8eb4b77eff4 is described below

commit d8eb4b77eff4adadf94f9b793444010b86bce74c
Author: JinyuChen97 <[email protected]>
AuthorDate: Mon Mar 16 05:52:39 2026 +0000

    [build] non-varargs call of varargs method with inexact argument type for 
last parameter (#21992)
    
    https://issues.apache.org/jira/browse/CAMEL-22555
---
 .../src/main/resources/api-route-test.vm                                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/tooling/maven/camel-api-component-maven-plugin/src/main/resources/api-route-test.vm
 
b/tooling/maven/camel-api-component-maven-plugin/src/main/resources/api-route-test.vm
index be98763f2b8e..1ee29f4e1b31 100644
--- 
a/tooling/maven/camel-api-component-maven-plugin/src/main/resources/api-route-test.vm
+++ 
b/tooling/maven/camel-api-component-maven-plugin/src/main/resources/api-route-test.vm
@@ -87,7 +87,7 @@ requestBodyAndHeaders("direct://${model.UniqueName}", null, 
headers);
 #if ( !$voidResult )
 
         assertNotNull(result, "${model.Name} result");
-        LOG.debug("${model.Name}: {}", result);
+        LOG.debug("${model.Name}: {}", (Object) result);
 #end
     }
 

Reply via email to