Github user krlohnes commented on the issue: https://github.com/apache/tinkerpop/pull/715 So it's not quite fixed. I changed the while loop to ``` int i = 0; while (this.starts.hasNext()) { if (i==0) { stashedStarts.push(this.starts.next()); } else { stashedStarts.add(this.starts.next()); } i++; } ``` Which sort of works, but only if the the edges are inserted in the right order. I'm still trying to figure out if it's possible to order the starts properly.
---