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 2015/06/03 18:26:54 UTC

[2/7] incubator-tinkerpop git commit: Clean up javadoc a bit more around EventStrategy classes.

Clean up javadoc a bit more around EventStrategy classes.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/8401fe1e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/8401fe1e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/8401fe1e

Branch: refs/heads/master
Commit: 8401fe1e2966d8f99d30ef10131041d485aa47ef
Parents: 41310d0
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Jun 3 11:45:24 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Jun 3 12:25:49 2015 -0400

----------------------------------------------------------------------
 .../gremlin/process/traversal/step/util/event/Event.java      | 2 +-
 .../process/traversal/strategy/decoration/EventStrategy.java  | 7 +------
 2 files changed, 2 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/8401fe1e/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/util/event/Event.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/util/event/Event.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/util/event/Event.java
index 26db28a..b5ed288 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/util/event/Event.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/util/event/Event.java
@@ -29,7 +29,7 @@ import org.apache.tinkerpop.gremlin.structure.VertexProperty;
 import java.util.Iterator;
 
 /**
- * A representation of some mutation action that occurs on a {@link Graph} for a {@link Traversal}.
+ * A representation of some action that occurs on a {@link Graph} for a {@link Traversal}.
  *
  * @author Stephen Mallette (http://stephen.genoprime.com)
  */

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/8401fe1e/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/EventStrategy.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/EventStrategy.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/EventStrategy.java
index 3a93f56..30b48fa 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/EventStrategy.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/EventStrategy.java
@@ -37,8 +37,7 @@ import java.util.Deque;
 import java.util.List;
 
 /**
- * A strategy that raises events when {@link org.apache.tinkerpop.gremlin.process.traversal.step.Mutating} steps are
- * encountered and successfully executed.
+ * A strategy that raises events when {@link Mutating} steps are encountered and successfully executed.
  * <p/>
  * Note that this implementation requires a {@link Graph} on the {@link Traversal} instance.  If that is not present
  * an {@link java.lang.IllegalStateException} will be thrown.
@@ -160,10 +159,6 @@ public final class EventStrategy extends AbstractTraversalStrategy<TraversalStra
             });
         }
 
-        /**
-         * Add an event to the event queue. If this is a non-transactional graph, then the queue fires and resets after
-         * each event is added.
-         */
         public void addEvent(final Event evt) {
             eventQueue.get().add(evt);
         }