Uploaded image for project: 'TinkerPop'
  1. TinkerPop
  2. TINKERPOP-1116

Some anonymous traversal steps can be hard typed.

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 3.1.1-incubating
    • 3.3.0
    • process

    Description

      We have lots of this:

      public static <A> GraphTraversal<A, Edge> bothE(final String... edgeLabels) {
              return __.<A>start().bothE(edgeLabels);
          }
      

      This should really be:

      public static GraphTraversal<Vertex, Edge> bothE(final String... edgeLabels) {
              return __.<Vertex>start().bothE(edgeLabels);
          }
      

      Attachments

        Issue Links

          Activity

            People

              okram Marko A. Rodriguez
              okram Marko A. Rodriguez
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: