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 2015/09/04 10:21:07 UTC

[3/4] camel git commit: CAMEL-9102: Changed tabs to whitespace for identation

CAMEL-9102: Changed tabs to whitespace for identation


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

Branch: refs/heads/master
Commit: 237a058889c3c7a7f03b026d4fcab7ad0db5652c
Parents: d3644c1
Author: Bruno Marco Visioli <bv...@stefanini.com>
Authored: Wed Sep 2 17:45:51 2015 -0300
Committer: Claus Ibsen <da...@apache.org>
Committed: Fri Sep 4 10:18:40 2015 +0200

----------------------------------------------------------------------
 .../main/java/org/apache/camel/component/cxf/CxfEndpoint.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/237a0588/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java
index ad1588c..041aad6 100644
--- a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java
+++ b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java
@@ -968,9 +968,9 @@ public class CxfEndpoint extends DefaultEndpoint implements HeaderFilterStrategy
      * To limit the total size of number of bytes the logger will output when logging feature has been enabled and -1 for no limit.
      */
     public void setLoggingSizeLimit(int loggingSizeLimit) {
-    	if(loggingSizeLimit < -1) {
-    		throw new IllegalArgumentException("LoggingSizeLimit must be greater or equal to -1.");
-    	}
+        if(loggingSizeLimit < -1) {
+            throw new IllegalArgumentException("LoggingSizeLimit must be greater or equal to -1.");
+        }
         this.loggingSizeLimit = loggingSizeLimit;
     }