This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-3.4.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-3.4.x by this push: new b4b1b0a Backporting to 3.4.x for CAMEL-15571 (#4287) b4b1b0a is described below commit b4b1b0a7b3d3b5d4fe5641fc802fc4a7b391a89b Author: Chandrakant Hardahe <chandrakanthardah...@gmail.com> AuthorDate: Thu Sep 24 19:57:24 2020 +0530 Backporting to 3.4.x for CAMEL-15571 (#4287) Co-authored-by: Chandrakant Hardahe <chard...@chardahe.pnq.csb> --- .../camel/component/properties/AbstractLocationPropertiesSource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/camel-base/src/main/java/org/apache/camel/component/properties/AbstractLocationPropertiesSource.java b/core/camel-base/src/main/java/org/apache/camel/component/properties/AbstractLocationPropertiesSource.java index 306ef8a..4a6fce6 100644 --- a/core/camel-base/src/main/java/org/apache/camel/component/properties/AbstractLocationPropertiesSource.java +++ b/core/camel-base/src/main/java/org/apache/camel/component/properties/AbstractLocationPropertiesSource.java @@ -52,7 +52,7 @@ public abstract class AbstractLocationPropertiesSource extends ServiceSupport im @Override public Properties loadProperties(Predicate<String> filter) { - Properties answer = new Properties(); + Properties answer = new OrderedProperties(); for (String name: properties.stringPropertyNames()) { if (filter.test(name)) {