This is an automated email from the ASF dual-hosted git repository. okram pushed a commit to branch tp4 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
The following commit(s) were added to refs/heads/tp4 by this push: new 0ae83d2 minor nothing. done for the day. 0ae83d2 is described below commit 0ae83d2e1fb6ece61202b5ffa2e9fbeff47ec9e5 Author: Marko A. Rodriguez <okramma...@gmail.com> AuthorDate: Mon Apr 29 17:02:50 2019 -0600 minor nothing. done for the day. --- .../org/apache/tinkerpop/machine/function/flatmap/InjectFlatMap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/machine/machine-core/src/main/java/org/apache/tinkerpop/machine/function/flatmap/InjectFlatMap.java b/java/machine/machine-core/src/main/java/org/apache/tinkerpop/machine/function/flatmap/InjectFlatMap.java index 1635b2b..8dbf75b 100644 --- a/java/machine/machine-core/src/main/java/org/apache/tinkerpop/machine/function/flatmap/InjectFlatMap.java +++ b/java/machine/machine-core/src/main/java/org/apache/tinkerpop/machine/function/flatmap/InjectFlatMap.java @@ -42,7 +42,7 @@ public final class InjectFlatMap<C, S, E> extends AbstractFunction<C> implements } @Override - public Iterator<E> apply(Traverser<C, S> traverser) { + public Iterator<E> apply(final Traverser<C, S> traverser) { return new ArrayIterator<>(this.objects); }