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:08 UTC

[4/4] camel git commit: Fixed CS. This closes #605.

Fixed CS. This closes #605.


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

Branch: refs/heads/master
Commit: 42c6af57b30480509755fef97da668d4f290edfb
Parents: 237a058
Author: Claus Ibsen <da...@apache.org>
Authored: Fri Sep 4 10:21:50 2015 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Fri Sep 4 10:21:50 2015 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/camel/component/cxf/CxfEndpoint.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/42c6af57/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 041aad6..207e88c 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,7 +968,7 @@ 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) {
+        if (loggingSizeLimit < -1) {
             throw new IllegalArgumentException("LoggingSizeLimit must be greater or equal to -1.");
         }
         this.loggingSizeLimit = loggingSizeLimit;