You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2014/06/19 09:17:40 UTC

[3/6] git commit: CAMEL-7429 Fix issue preventing from redefining property values

CAMEL-7429 Fix issue preventing from redefining property values


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/7f78ed9f
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/7f78ed9f
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/7f78ed9f

Branch: refs/heads/camel-2.13.x
Commit: 7f78ed9ffd9bad64bbe2a6d4a762909aacbef80f
Parents: c8a324e
Author: Antoine DESSAIGNE <an...@gmail.com>
Authored: Thu Jun 19 09:01:44 2014 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Thu Jun 19 09:17:21 2014 +0200

----------------------------------------------------------------------
 .../apache/camel/component/properties/DefaultPropertiesParser.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/7f78ed9f/camel-core/src/main/java/org/apache/camel/component/properties/DefaultPropertiesParser.java
----------------------------------------------------------------------
diff --git a/camel-core/src/main/java/org/apache/camel/component/properties/DefaultPropertiesParser.java b/camel-core/src/main/java/org/apache/camel/component/properties/DefaultPropertiesParser.java
index 1ee227a..7d25e8d 100644
--- a/camel-core/src/main/java/org/apache/camel/component/properties/DefaultPropertiesParser.java
+++ b/camel-core/src/main/java/org/apache/camel/component/properties/DefaultPropertiesParser.java
@@ -242,7 +242,7 @@ public class DefaultPropertiesParser implements AugmentedPropertyNameAwareProper
             } else if (properties != null) {
                 value = properties.getProperty(key);
             }
-            return value;
+            return parseProperty(key, value, properties);
         }
     }