You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2018/03/21 21:17:49 UTC

tinkerpop git commit: Fixed minor issues. Thanks @robertdale

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1682 9e1642fd0 -> fe733bf24


Fixed minor issues. Thanks @robertdale


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

Branch: refs/heads/TINKERPOP-1682
Commit: fe733bf24ae56de3a504d3393a6f20fe9d590e76
Parents: 9e1642f
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Wed Mar 21 14:16:45 2018 -0700
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Wed Mar 21 14:16:45 2018 -0700

----------------------------------------------------------------------
 CHANGELOG.asciidoc                                                 | 1 +
 .../strategy/optimization/ByModulatorOptimizationStrategy.java     | 2 --
 2 files changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/fe733bf2/CHANGELOG.asciidoc
----------------------------------------------------------------------
diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index 3e5c63d..d9845b1 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -112,6 +112,7 @@ This release also includes changes from <<release-3-2-6, 3.2.6>>.
 * Removed access to previously deprecated `CoreGremlinPlugin#INSTANCE` field.
 * `gremlin.sh` and `gremln.bat` no longer support the option to pass a script as an argument for execution mode without using the `-i` option.
 * Graphite and Ganglia are no longer packaged with the Gremlin Server distribution.
+* `TransactionException` is no longer a class of `AbstractTransaction` and it extends `RuntimeException`.
 * Included an ellipse on long property names that are truncated.
 * Renamed `RangeByIsCountStrategy` to `CountStrategy`.
 * Added more specific typing to various `__` traversal steps. E.g. `<A,Vertex>out()` is `<Vertex,Vertex>out()`.

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/fe733bf2/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/ByModulatorOptimizationStrategy.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/ByModulatorOptimizationStrategy.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/ByModulatorOptimizationStrategy.java
index 8202ca2..a4f8544 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/ByModulatorOptimizationStrategy.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/ByModulatorOptimizationStrategy.java
@@ -48,8 +48,6 @@ import java.util.Set;
  * @example <pre>
  * __.path().by(id())            // is replaced by __.path().by(id)
  * __.dedup().by(label())        // is replaced by __.dedup().by(label)
- * __.group().by(key())          // is replaced by __.group().by(key)
- * __.group().by(value())        // is replaced by __.group().by(value)
  * __.order().by(values("name")) // is replaced by __.order().by("name")
  * </pre>
  */