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

[3/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/2363157a
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/2363157a
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/2363157a

Branch: refs/heads/camel-2.17.x
Commit: 2363157a81051d92397ffcccfd2ca08fb5b8c93b
Parents: 586609f
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:52:56 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/2363157a/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
-        }
     }
 }