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/22 17:53:37 UTC

[5/5] camel git commit: CAMEL-9745: Splitter - Should skip null messages if iterator returns null

CAMEL-9745: Splitter - Should skip null messages if iterator returns null


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

Branch: refs/heads/camel-2.16.x
Commit: 77fd40bf6c0827970c5781b829de50e8e101f369
Parents: 1177cf2
Author: Claus Ibsen <da...@apache.org>
Authored: Tue Mar 22 17:52:56 2016 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Tue Mar 22 17:53:21 2016 +0100

----------------------------------------------------------------------
 .../java/org/apache/camel/processor/SplitIteratorNullTest.java  | 5 -----
 1 file changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/77fd40bf/camel-core/src/test/java/org/apache/camel/processor/SplitIteratorNullTest.java
----------------------------------------------------------------------
diff --git a/camel-core/src/test/java/org/apache/camel/processor/SplitIteratorNullTest.java b/camel-core/src/test/java/org/apache/camel/processor/SplitIteratorNullTest.java
index c44ec85..f612c27 100644
--- a/camel-core/src/test/java/org/apache/camel/processor/SplitIteratorNullTest.java
+++ b/camel-core/src/test/java/org/apache/camel/processor/SplitIteratorNullTest.java
@@ -17,7 +17,6 @@
 package org.apache.camel.processor;
 
 import java.util.Iterator;
-import java.util.function.Consumer;
 
 import org.apache.camel.ContextTestSupport;
 import org.apache.camel.builder.RouteBuilder;
@@ -83,9 +82,5 @@ public class SplitIteratorNullTest extends ContextTestSupport {
             // noop
         }
 
-        @Override
-        public void forEachRemaining(Consumer<? super String> action) {
-            // noop
-        }
     }
 }