Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 34DDD189CF for ; Sat, 17 Oct 2015 08:16:21 +0000 (UTC) Received: (qmail 22338 invoked by uid 500); 17 Oct 2015 08:16:21 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 22287 invoked by uid 500); 17 Oct 2015 08:16:21 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 22276 invoked by uid 99); 17 Oct 2015 08:16:21 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 17 Oct 2015 08:16:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EA45AE090A; Sat, 17 Oct 2015 08:16:20 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: gzurowski@apache.org To: commits@camel.apache.org Message-Id: <7914f3d6af1748f4ad91fe9ba0590e10@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: camel git commit: Fix Checkstyle issues Date: Sat, 17 Oct 2015 08:16:20 +0000 (UTC) Repository: camel Updated Branches: refs/heads/camel-2.15.x e43edb737 -> b821f7f98 Fix Checkstyle issues Signed-off-by: Gregor Zurowski Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/b821f7f9 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/b821f7f9 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/b821f7f9 Branch: refs/heads/camel-2.15.x Commit: b821f7f989b5cf3b8a6c3e817287314bf6cc0a35 Parents: e43edb7 Author: Gregor Zurowski Authored: Sat Oct 17 10:15:47 2015 +0200 Committer: Gregor Zurowski Committed: Sat Oct 17 10:15:47 2015 +0200 ---------------------------------------------------------------------- .../http/NettyHttpBindingPreservePostFormUrlEncodedBodyTest.java | 4 ++-- .../netty4/http/NettyHttpBindingUseRelativePathInPostTest.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/b821f7f9/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyHttpBindingPreservePostFormUrlEncodedBodyTest.java ---------------------------------------------------------------------- diff --git a/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyHttpBindingPreservePostFormUrlEncodedBodyTest.java b/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyHttpBindingPreservePostFormUrlEncodedBodyTest.java index 861c227..e94ffd4 100644 --- a/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyHttpBindingPreservePostFormUrlEncodedBodyTest.java +++ b/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyHttpBindingPreservePostFormUrlEncodedBodyTest.java @@ -16,6 +16,8 @@ */ package org.apache.camel.component.netty4.http; +import io.netty.handler.codec.http.FullHttpRequest; + import org.apache.camel.Exchange; import org.apache.camel.Message; import org.apache.camel.Processor; @@ -23,8 +25,6 @@ import org.apache.camel.builder.RouteBuilder; import org.apache.camel.component.http.HttpMethods; import org.junit.Test; -import io.netty.handler.codec.http.FullHttpRequest; - public class NettyHttpBindingPreservePostFormUrlEncodedBodyTest extends BaseNettyTest { @Test http://git-wip-us.apache.org/repos/asf/camel/blob/b821f7f9/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyHttpBindingUseRelativePathInPostTest.java ---------------------------------------------------------------------- diff --git a/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyHttpBindingUseRelativePathInPostTest.java b/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyHttpBindingUseRelativePathInPostTest.java index 39ed697..89bceff 100644 --- a/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyHttpBindingUseRelativePathInPostTest.java +++ b/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/NettyHttpBindingUseRelativePathInPostTest.java @@ -16,14 +16,14 @@ */ package org.apache.camel.component.netty4.http; +import io.netty.handler.codec.http.FullHttpRequest; + import org.apache.camel.Exchange; import org.apache.camel.Processor; import org.apache.camel.builder.RouteBuilder; import org.apache.camel.component.http.HttpMethods; import org.junit.Test; -import io.netty.handler.codec.http.FullHttpRequest; - public class NettyHttpBindingUseRelativePathInPostTest extends BaseNettyTest { @Test