This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch df2 in repository https://gitbox.apache.org/repos/asf/camel.git
commit bb297f257d99a105915c2ba8e559ad4d47534e52 Author: Claus Ibsen <[email protected]> AuthorDate: Tue Aug 19 06:55:41 2025 +0200 CAMEL-22354: dataformats - Align all data formats getter setters to model --- .../java/org/apache/camel/reifier/dataformat/YAMLDataFormatReifier.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/camel-core-reifier/src/main/java/org/apache/camel/reifier/dataformat/YAMLDataFormatReifier.java b/core/camel-core-reifier/src/main/java/org/apache/camel/reifier/dataformat/YAMLDataFormatReifier.java index 01b6ad19b42..1184053995a 100644 --- a/core/camel-core-reifier/src/main/java/org/apache/camel/reifier/dataformat/YAMLDataFormatReifier.java +++ b/core/camel-core-reifier/src/main/java/org/apache/camel/reifier/dataformat/YAMLDataFormatReifier.java @@ -45,8 +45,6 @@ public class YAMLDataFormatReifier extends DataFormatReifier<YAMLDataFormat> { properties.put("classLoader", definition.getClassLoader()); if (definition.getUseApplicationContextClassLoader() != null) { properties.put("useApplicationContextClassLoader", definition.getUseApplicationContextClassLoader()); - } else { - properties.put("useApplicationContextClassLoader", "true"); } properties.put("prettyFlow", definition.getPrettyFlow()); properties.put("allowAnyType", definition.getAllowAnyType());
