Drops the deprecated group step from gremlin .net CTR
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/a9ee01ec Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/a9ee01ec Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/a9ee01ec Branch: refs/heads/master Commit: a9ee01eca16e6d45100cc5cde584a3325fbbc240 Parents: d0a7323 Author: Stephen Mallette <[email protected]> Authored: Tue Jul 18 12:45:57 2017 -0400 Committer: Stephen Mallette <[email protected]> Committed: Tue Jul 18 12:45:57 2017 -0400 ---------------------------------------------------------------------- .../src/Gremlin.Net/Process/Traversal/GraphTraversal.cs | 9 --------- gremlin-dotnet/src/Gremlin.Net/Process/Traversal/__.cs | 8 -------- 2 files changed, 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/a9ee01ec/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs ---------------------------------------------------------------------- diff --git a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs index 329941d..713e002 100644 --- a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs +++ b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversal.cs @@ -315,15 +315,6 @@ namespace Gremlin.Net.Process.Traversal } /// <summary> - /// Adds the groupV3d0 step to this <see cref="GraphTraversal{SType, EType}" />. - /// </summary> - public GraphTraversal< S , E > GroupV3d0 (params object[] args) - { - Bytecode.AddStep("groupV3d0", args); - return Wrap< S , E >(this); - } - - /// <summary> /// Adds the has step to this <see cref="GraphTraversal{SType, EType}" />. /// </summary> public GraphTraversal< S , E > Has (params object[] args) http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/a9ee01ec/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/__.cs ---------------------------------------------------------------------- diff --git a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/__.cs b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/__.cs index cf40c11..d44d62c 100644 --- a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/__.cs +++ b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/__.cs @@ -249,14 +249,6 @@ namespace Gremlin.Net.Process.Traversal } /// <summary> - /// Spawns a <see cref="GraphTraversal{SType, EType}" /> and adds the groupV3d0 step to that traversal. - /// </summary> - public static GraphTraversal<object, object> GroupV3d0(params object[] args) - { - return new GraphTraversal<object, object>().GroupV3d0(args); - } - - /// <summary> /// Spawns a <see cref="GraphTraversal{SType, EType}" /> and adds the has step to that traversal. /// </summary> public static GraphTraversal<object, object> Has(params object[] args)
