Updated Branches: refs/heads/master ba5d6d324 -> 905ee6c28
Fixed compilation error. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/905ee6c2 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/905ee6c2 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/905ee6c2 Branch: refs/heads/master Commit: 905ee6c283c97352082b0b902225f2a90ae12b2a Parents: ba5d6d3 Author: Claus Ibsen <[email protected]> Authored: Sun Jul 7 11:48:04 2013 +0200 Committer: Claus Ibsen <[email protected]> Committed: Sun Jul 7 11:48:04 2013 +0200 ---------------------------------------------------------------------- .../java/org/apache/camel/test/blueprint/CamelBlueprintHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/905ee6c2/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintHelper.java ---------------------------------------------------------------------- diff --git a/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintHelper.java b/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintHelper.java index 1637248..8849e64 100644 --- a/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintHelper.java +++ b/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintHelper.java @@ -183,7 +183,7 @@ public final class CamelBlueprintHelper { // must force type cast to have code compile with both java6 // and 7 with the // (org.apache.felix.utils.properties.Properties) - String value = cfg.get(key); + String value = (String)cfg.get(key); props.put(key, value); }
