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/01/22 15:59:00 UTC

[2/2] camel git commit: Mark constant final

Mark constant final

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/98d70169
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/98d70169
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/98d70169

Branch: refs/heads/camel-2.16.x
Commit: 98d70169bb184d11a95d41b05d04ed6bff853ba2
Parents: b4e6c41
Author: Gregor Zurowski <gr...@zurowski.org>
Authored: Fri Jan 22 15:54:27 2016 +0100
Committer: Gregor Zurowski <gr...@zurowski.org>
Committed: Fri Jan 22 15:56:53 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/camel/blob/98d70169/components/camel-netty4/src/test/java/org/apache/camel/component/netty4/NettyProducerHangTest.java
----------------------------------------------------------------------
diff --git a/components/camel-netty4/src/test/java/org/apache/camel/component/netty4/NettyProducerHangTest.java b/components/camel-netty4/src/test/java/org/apache/camel/component/netty4/NettyProducerHangTest.java
index 2a23d8e..2f61963 100644
--- a/components/camel-netty4/src/test/java/org/apache/camel/component/netty4/NettyProducerHangTest.java
+++ b/components/camel-netty4/src/test/java/org/apache/camel/component/netty4/NettyProducerHangTest.java
@@ -27,7 +27,7 @@ import org.junit.Test;
 
 public class NettyProducerHangTest extends CamelTestSupport {
 
-    private static int PORT = 4093;
+    private static final int PORT = 4093;
 
     @Test
     public void nettyProducerHangsOnTheSecondRequestToTheSocketWhichIsClosed() throws Exception {