This is an automated email from the ASF dual-hosted git repository. florianhockmann pushed a commit to branch TINKERPOP-2681-fix-net-direction in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 1b7acf68acef0d0c1640fa549955e6be9c014aee Author: Florian Hockmann <[email protected]> AuthorDate: Wed Mar 2 17:10:27 2022 +0100 TINKERPOP-2681 Use PascalCase for added Directions Using `=>` instead of `=` also makes these properties instead of fields which is more consistent with the other properties there. --- gremlin-dotnet/src/Gremlin.Net/Process/Traversal/Direction.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/Direction.cs b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/Direction.cs index 42aee69..f476bc4 100644 --- a/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/Direction.cs +++ b/gremlin-dotnet/src/Gremlin.Net/Process/Traversal/Direction.cs @@ -41,9 +41,9 @@ namespace Gremlin.Net.Process.Traversal public static Direction Out => new Direction("OUT"); - public static Direction from = Out; + public static Direction From => Out; - public static Direction to = In; + public static Direction To => In; private static readonly IDictionary<string, Direction> Properties = new Dictionary<string, Direction> {
