Fixed CS. This closes #855. This closes #849. This closes #848. This closes #519.
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/b7780475 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/b7780475 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/b7780475 Branch: refs/heads/camel-2.16.x Commit: b77804759488ef0813d187b5d8b095c5d8db5f47 Parents: 35c494e Author: Claus Ibsen <davscl...@apache.org> Authored: Wed Feb 24 08:17:25 2016 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Wed Feb 24 08:24:37 2016 +0100 ---------------------------------------------------------------------- .../camel/test/blueprint/CamelBlueprintTestSupport.java | 2 +- .../ConfigAdminNoDefaultValuesBlueprintCreationTest.java | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/b7780475/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java ---------------------------------------------------------------------- diff --git a/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java b/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java index 35f55f8..928d257 100644 --- a/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java +++ b/components/camel-test-blueprint/src/main/java/org/apache/camel/test/blueprint/CamelBlueprintTestSupport.java @@ -154,7 +154,7 @@ public abstract class CamelBlueprintTestSupport extends CamelTestSupport { // to the same state of BP container Set<Long> bpEvents = new HashSet<>(); - if(!expectReload){ + if (!expectReload) { CamelBlueprintHelper.waitForBlueprintContainer(bpEvents, answer, symbolicName, BlueprintEvent.CREATED, null); } http://git-wip-us.apache.org/repos/asf/camel/blob/b7780475/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/ConfigAdminNoDefaultValuesBlueprintCreationTest.java ---------------------------------------------------------------------- diff --git a/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/ConfigAdminNoDefaultValuesBlueprintCreationTest.java b/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/ConfigAdminNoDefaultValuesBlueprintCreationTest.java index f19342b..8ace8c9 100644 --- a/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/ConfigAdminNoDefaultValuesBlueprintCreationTest.java +++ b/components/camel-test-blueprint/src/test/java/org/apache/camel/test/blueprint/ConfigAdminNoDefaultValuesBlueprintCreationTest.java @@ -16,16 +16,17 @@ */ package org.apache.camel.test.blueprint; -import org.junit.Test; import java.util.Dictionary; +import org.junit.Test; + /** * */ public class ConfigAdminNoDefaultValuesBlueprintCreationTest extends CamelBlueprintTestSupport { @Override - protected boolean expectBlueprintContainerReloadOnConfigAdminUpdate(){ + protected boolean expectBlueprintContainerReloadOnConfigAdminUpdate() { return true; } @@ -35,8 +36,7 @@ public class ConfigAdminNoDefaultValuesBlueprintCreationTest extends CamelBluepr } @Override - protected String useOverridePropertiesWithConfigAdmin(Dictionary props) - throws Exception { + protected String useOverridePropertiesWithConfigAdmin(Dictionary props) throws Exception { props.put("greeting", "Bye"); props.put("destination", "mock:result"); return "my-placeholders";