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

[4/4] camel git commit: Fix checkstyle issues

Fix checkstyle issues


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

Branch: refs/heads/camel-2.17.x
Commit: 41586864490dbe56b4c167413a24a2d48b4cccdd
Parents: 389e977
Author: Quinn Stevenson <qu...@pronoia-solutions.com>
Authored: Wed Apr 27 13:24:53 2016 -0600
Committer: Claus Ibsen <da...@apache.org>
Committed: Thu Apr 28 09:10:59 2016 +0200

----------------------------------------------------------------------
 .../org/apache/camel/component/mllp/MllpTcpServerConsumer.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/41586864/components/camel-mllp/src/main/java/org/apache/camel/component/mllp/MllpTcpServerConsumer.java
----------------------------------------------------------------------
diff --git a/components/camel-mllp/src/main/java/org/apache/camel/component/mllp/MllpTcpServerConsumer.java b/components/camel-mllp/src/main/java/org/apache/camel/component/mllp/MllpTcpServerConsumer.java
index 7a95dc2..f1fa9b7 100644
--- a/components/camel-mllp/src/main/java/org/apache/camel/component/mllp/MllpTcpServerConsumer.java
+++ b/components/camel-mllp/src/main/java/org/apache/camel/component/mllp/MllpTcpServerConsumer.java
@@ -205,9 +205,9 @@ public class MllpTcpServerConsumer extends DefaultConsumer {
                     Socket socket = null;
                     try {
                         socket = serverSocket.accept();
-                    } catch (SocketTimeoutException timeoutEx ) {
+                    } catch (SocketTimeoutException timeoutEx) {
                         // Didn't get a new connection - keep waiting for one
-                        log.debug( "Timeout waiting for client connection - keep listening");
+                        log.debug("Timeout waiting for client connection - keep listening");
                         continue;
                     } catch (SocketException socketEx) {
                         // This should happen if the component is closed while the accept call is blocking