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/49e32334 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/49e32334 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/49e32334 Branch: refs/heads/release/2.18.5 Commit: 49e32334a8f28fa46d95ecf0574e10d7c9241620 Parents: b843e0d Author: Gregor Zurowski <gre...@zurowski.org> Authored: Sun Sep 17 10:45:07 2017 +0200 Committer: Gregor Zurowski <gre...@zurowski.org> Committed: Thu Sep 21 08:09:59 2017 +0100 ---------------------------------------------------------------------- .../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/49e32334/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); }