davsclaus commented on code in PR #24662: URL: https://github.com/apache/camel/pull/24662#discussion_r3571551063
########## core/camel-xml-jaxb/src/main/java/org/apache/camel/xml/jaxb/JaxbHelper.java: ########## @@ -44,6 +44,8 @@ import org.apache.camel.converter.jaxp.XmlConverter; import org.apache.camel.model.BasicExpressionNode; import org.apache.camel.model.ExpressionNode; +import org.apache.camel.builder.EndpointConsumerBuilder; +import org.apache.camel.builder.EndpointProducerBuilder; Review Comment: The `org.apache.camel.builder.*` imports are placed after `org.apache.camel.model.ExpressionNode`, but alphabetically they belong between `org.apache.camel.TypeConversionException` and `org.apache.camel.converter.jaxp.XmlConverter`. This will fail `mvn impsort:sort` in CI. The other three dumper files have the imports correctly placed — only this file needs fixing. Running `mvn impsort:sort` in the `core/camel-xml-jaxb` module should auto-fix it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
