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/03/21 12:42:52 UTC

[1/4] camel git commit: Fix Checkstyle issues

Repository: camel
Updated Branches:
  refs/heads/camel-2.15.x 75e9dff74 -> 8709313cd
  refs/heads/camel-2.16.x 04e8ab939 -> c8286f00f
  refs/heads/camel-2.17.x 7737950b6 -> d12f08e54


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

Branch: refs/heads/camel-2.17.x
Commit: a7f9fdd30a7fdb4f7cfff83dcdc253638c1204df
Parents: 7737950
Author: Gregor Zurowski <gr...@zurowski.org>
Authored: Mon Mar 21 10:44:11 2016 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Mar 21 12:41:54 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/camel/blob/a7f9fdd3/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java
----------------------------------------------------------------------
diff --git a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java
index 20bcb7f..c22bf99 100644
--- a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java
+++ b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java
@@ -198,7 +198,7 @@ public class ReaderInputStream extends InputStream {
             if (c == -1) {
                 endOfInput = true;
             } else {
-                encoderIn.position(position+c);
+                encoderIn.position(position + c);
             }
             encoderIn.flip();
         }
@@ -223,8 +223,8 @@ public class ReaderInputStream extends InputStream {
             throw new NullPointerException("Byte array must not be null");
         }
         if (len < 0 || off < 0 || (off + len) > b.length) {
-            throw new IndexOutOfBoundsException("Array Size=" + b.length +
-                    ", offset=" + off + ", length=" + len);
+            throw new IndexOutOfBoundsException("Array Size=" + b.length 
+                    + ", offset=" + off + ", length=" + len);
         }
         int read = 0;
         if (len == 0) {


[2/4] camel git commit: Upgrade RX

Posted by da...@apache.org.
Upgrade RX


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

Branch: refs/heads/camel-2.17.x
Commit: d12f08e54bc61d8b6908de76a7d26604d92d6a68
Parents: a7f9fdd
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Mar 21 12:41:16 2016 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Mar 21 12:42:00 2016 +0100

----------------------------------------------------------------------
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/d12f08e5/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index 4b3b70e..4630491 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -463,7 +463,7 @@
     <rhino-version>1.7R2</rhino-version>
     <rome-bundle-version>1.0_3</rome-bundle-version>
     <rome-version>1.0</rome-version>
-    <rxjava-version>1.1.1</rxjava-version>
+    <rxjava-version>1.1.2</rxjava-version>
     <saaj-impl-version>1.3.2_2</saaj-impl-version>
     <saxon-bundle-version>9.5.1-5_1</saxon-bundle-version>
     <saxon-version>9.5.1-5</saxon-version>


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

Posted by da...@apache.org.
Fix Checkstyle 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/8709313c
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/8709313c
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/8709313c

Branch: refs/heads/camel-2.15.x
Commit: 8709313cd66fadc7f5af72a4f3407d42c83b5d66
Parents: 75e9dff
Author: Gregor Zurowski <gr...@zurowski.org>
Authored: Mon Mar 21 10:44:11 2016 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Mar 21 12:42:41 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/camel/blob/8709313c/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java
----------------------------------------------------------------------
diff --git a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java
index 20bcb7f..c22bf99 100644
--- a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java
+++ b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java
@@ -198,7 +198,7 @@ public class ReaderInputStream extends InputStream {
             if (c == -1) {
                 endOfInput = true;
             } else {
-                encoderIn.position(position+c);
+                encoderIn.position(position + c);
             }
             encoderIn.flip();
         }
@@ -223,8 +223,8 @@ public class ReaderInputStream extends InputStream {
             throw new NullPointerException("Byte array must not be null");
         }
         if (len < 0 || off < 0 || (off + len) > b.length) {
-            throw new IndexOutOfBoundsException("Array Size=" + b.length +
-                    ", offset=" + off + ", length=" + len);
+            throw new IndexOutOfBoundsException("Array Size=" + b.length 
+                    + ", offset=" + off + ", length=" + len);
         }
         int read = 0;
         if (len == 0) {


[3/4] camel git commit: Fix Checkstyle issues

Posted by da...@apache.org.
Fix Checkstyle 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/c8286f00
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c8286f00
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c8286f00

Branch: refs/heads/camel-2.16.x
Commit: c8286f00f4a70945ac417fa80526328406b6de5e
Parents: 04e8ab9
Author: Gregor Zurowski <gr...@zurowski.org>
Authored: Mon Mar 21 10:44:11 2016 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Mar 21 12:42:21 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/camel/blob/c8286f00/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java
----------------------------------------------------------------------
diff --git a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java
index 20bcb7f..c22bf99 100644
--- a/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java
+++ b/components/camel-cxf/src/main/java/org/apache/camel/component/cxf/util/ReaderInputStream.java
@@ -198,7 +198,7 @@ public class ReaderInputStream extends InputStream {
             if (c == -1) {
                 endOfInput = true;
             } else {
-                encoderIn.position(position+c);
+                encoderIn.position(position + c);
             }
             encoderIn.flip();
         }
@@ -223,8 +223,8 @@ public class ReaderInputStream extends InputStream {
             throw new NullPointerException("Byte array must not be null");
         }
         if (len < 0 || off < 0 || (off + len) > b.length) {
-            throw new IndexOutOfBoundsException("Array Size=" + b.length +
-                    ", offset=" + off + ", length=" + len);
+            throw new IndexOutOfBoundsException("Array Size=" + b.length 
+                    + ", offset=" + off + ", length=" + len);
         }
         int read = 0;
         if (len == 0) {