Fix Checkstyle issue Signed-off-by: Gregor Zurowski <gre...@zurowski.org>
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c57b11bf Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c57b11bf Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c57b11bf Branch: refs/heads/release/2.18.5 Commit: c57b11bf6af5be535bba4fe3055a0562f27edb1c Parents: 23d05c6 Author: Gregor Zurowski <gre...@zurowski.org> Authored: Sun Sep 17 10:45:07 2017 +0200 Committer: Gregor Zurowski <gre...@zurowski.org> Committed: Sun Sep 17 10:45:07 2017 +0200 ---------------------------------------------------------------------- .../apache/camel/component/cxf/transport/CamelDestination.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/c57b11bf/components/camel-cxf-transport/src/main/java/org/apache/camel/component/cxf/transport/CamelDestination.java ---------------------------------------------------------------------- diff --git a/components/camel-cxf-transport/src/main/java/org/apache/camel/component/cxf/transport/CamelDestination.java b/components/camel-cxf-transport/src/main/java/org/apache/camel/component/cxf/transport/CamelDestination.java index 900ecbe..2b9ac06 100644 --- a/components/camel-cxf-transport/src/main/java/org/apache/camel/component/cxf/transport/CamelDestination.java +++ b/components/camel-cxf-transport/src/main/java/org/apache/camel/component/cxf/transport/CamelDestination.java @@ -280,8 +280,8 @@ public class CamelDestination extends AbstractDestination implements Configurabl OutputStream outputStream = outMessage.getContent(OutputStream.class); if (outputStream instanceof CachedOutputStream) { camelExchange.getOut().setBody(((CachedOutputStream)outputStream).getInputStream()); - } else { - camelExchange.getOut().setBody(outputStream); + } else { + camelExchange.getOut().setBody(outputStream); } LOG.debug("send the response message: {}", outputStream); }