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:43 UTC

[6/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/9b7cc6b5
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/9b7cc6b5
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/9b7cc6b5

Branch: refs/heads/master
Commit: 9b7cc6b5ca0412367149fabd5a51e33c2716c66b
Parents: 43956f9
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:29 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/9b7cc6b5/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);
         }
     }