Github user jorgebay commented on a diff in the pull request:

    https://github.com/apache/tinkerpop/pull/817#discussion_r175434403
  
    --- Diff: gremlin-dotnet/glv/P.template ---
    @@ -94,8 +94,8 @@ namespace Gremlin.Net.Process.Traversal
     <% } %><% pmethods.findAll{ it in ["within", "without"] }.each { method -> 
%>
             public static P <%= toCSharpMethodName.call(method) %>(params 
object[] args)
             {
    -            if (args.Length == 1 && args[0] is ICollection<object>)
    -                return new P("<%= method %>", 
ToGenericArray((ICollection<object>) args[0]));
    +            if (args.Length == 1 && args[0] is ICollection<object> 
collection)
    +                return new P("without", ToGenericArray(collection));
    --- End diff --
    
    Nice catch! I've looked at it and missed it completely :)


---

Reply via email to