You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gz...@apache.org on 2016/11/27 10:55:12 UTC

camel git commit: Fix Checkstype issues

Repository: camel
Updated Branches:
  refs/heads/master 94fd97ebe -> 2ab44347d


Fix Checkstype issues

Signed-off-by: Gregor Zurowski <gr...@zurowski.org>

Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/2ab44347
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/2ab44347
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/2ab44347

Branch: refs/heads/master
Commit: 2ab44347d8f808f3cf922a31c13f8a225fc4af42
Parents: 94fd97e
Author: Gregor Zurowski <gr...@zurowski.org>
Authored: Sun Nov 27 11:54:55 2016 +0100
Committer: Gregor Zurowski <gr...@zurowski.org>
Committed: Sun Nov 27 11:54:55 2016 +0100

----------------------------------------------------------------------
 .../java/org/apache/camel/component/netty4/http/BaseNettyTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/2ab44347/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/BaseNettyTest.java
----------------------------------------------------------------------
diff --git a/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/BaseNettyTest.java b/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/BaseNettyTest.java
index 92788f9..588b9fb 100644
--- a/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/BaseNettyTest.java
+++ b/components/camel-netty4-http/src/test/java/org/apache/camel/component/netty4/http/BaseNettyTest.java
@@ -91,7 +91,7 @@ public class BaseNettyTest extends CamelTestSupport {
         if (!events.isEmpty()) {
             String message = "Leaks detected while running tests: " + events;
             // Just write the message into log to help debug
-            for(LogEvent event: events) {
+            for (LogEvent event : events) {
                 LOG.info(event.getMessage().getFormattedMessage());
             }
             LogCaptureAppender.reset();