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 2020/11/20 20:30:00 UTC

[tinkerpop] 01/03: Minor update to javadoc CTR

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

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

commit 449caf62499fdea2d60668d861f2ce52c86acef5
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Fri Nov 20 14:49:08 2020 -0500

    Minor update to javadoc CTR
---
 .../java/org/apache/tinkerpop/gremlin/process/computer/Memory.java  | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/Memory.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/Memory.java
index 93931c3..1b74508 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/Memory.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/Memory.java
@@ -65,8 +65,10 @@ public interface Memory {
     public void set(final String key, final Object value) throws IllegalArgumentException, IllegalStateException;
 
     /**
-     * Set the value of the provided key. This is typically called in setup() and/or terminate() of the {@link VertexProgram}.
-     * If this is called during execute(), there is no guarantee as to the ultimately stored value as call order is indeterminate.
+     * Set the value of the provided key. This is typically called in setup() and/or terminate() of the
+     * {@link VertexProgram}. If this is called during execute(), there is no guarantee as to the ultimately stored
+     * value as call order is indeterminate. It is up to the implementation to determine the states in which this
+     * method can be called.
      *
      * @param key   they key to set a value for
      * @param value the value to set for the key