Repository: camel Updated Branches: refs/heads/master 91a7a02db -> 2d3c36a21
Fixed CS Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/2d3c36a2 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/2d3c36a2 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/2d3c36a2 Branch: refs/heads/master Commit: 2d3c36a21391f79371db4392718da25b333f4da0 Parents: e075822 Author: Andrea Cosentino <anco...@gmail.com> Authored: Mon Jul 25 14:15:11 2016 +0200 Committer: Andrea Cosentino <anco...@gmail.com> Committed: Mon Jul 25 14:33:33 2016 +0200 ---------------------------------------------------------------------- .../org/apache/camel/component/undertow/UndertowComponent.java | 2 +- .../org/apache/camel/component/undertow/UndertowEndpoint.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/2d3c36a2/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowComponent.java ---------------------------------------------------------------------- diff --git a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowComponent.java b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowComponent.java index a7fac90..912856f 100644 --- a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowComponent.java +++ b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowComponent.java @@ -81,7 +81,7 @@ public class UndertowComponent extends UriEndpointComponent implements RestConsu // Prefer endpoint configured over component configured if (undertowHttpBinding == null) { // fallback to component configured - undertowHttpBinding = getUndertowHttpBinding(); + undertowHttpBinding = getUndertowHttpBinding(); } if (undertowHttpBinding != null) { endpoint.setUndertowHttpBinding(undertowHttpBinding); http://git-wip-us.apache.org/repos/asf/camel/blob/2d3c36a2/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java ---------------------------------------------------------------------- diff --git a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java index b4dfcaf..b808b67 100644 --- a/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java +++ b/components/camel-undertow/src/main/java/org/apache/camel/component/undertow/UndertowEndpoint.java @@ -219,8 +219,8 @@ public class UndertowEndpoint extends DefaultEndpoint implements AsyncEndpoint, public UndertowHttpBinding getUndertowHttpBinding() { if (undertowHttpBinding == null) { // create a new binding and use the options from this endpoint - undertowHttpBinding = new DefaultUndertowHttpBinding(); - undertowHttpBinding.setHeaderFilterStrategy(getHeaderFilterStrategy()); + undertowHttpBinding = new DefaultUndertowHttpBinding(); + undertowHttpBinding.setHeaderFilterStrategy(getHeaderFilterStrategy()); } return undertowHttpBinding; }