You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2019/10/01 10:27:12 UTC

[tinkerpop] branch tp34 updated: TINKERPOP-2302 add `ElementMapStep#isOnGraphComputer()`

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch tp34
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/tp34 by this push:
     new 757c1f5  TINKERPOP-2302 add `ElementMapStep#isOnGraphComputer()`
     new 3e08b63  Merge pull request #1203 from dalaro/TINKERPOP-2303-on-tp34
757c1f5 is described below

commit 757c1f59e7606964ffb0f18f4dc07f8ee408ae78
Author: Dan LaRocque <da...@hopcount.org>
AuthorDate: Mon Sep 30 00:44:28 2019 -0500

    TINKERPOP-2302 add `ElementMapStep#isOnGraphComputer()`
---
 .../tinkerpop/gremlin/process/traversal/step/map/ElementMapStep.java   | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ElementMapStep.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ElementMapStep.java
index f8143f0..2f1db43 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ElementMapStep.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/ElementMapStep.java
@@ -97,6 +97,9 @@ public class ElementMapStep<K,E> extends MapStep<Element, Map<K, E>> implements
         this.onGraphComputer = true;
     }
 
+    public boolean isOnGraphComputer() {
+        return onGraphComputer;
+    }
 
     public String[] getPropertyKeys() {
         return propertyKeys;