Graph computer question

In some cases TinkerGraphComputer removes duplicates from input, is this a bug or a feature?
For example
gremlin> g.V(1,1).count()
==>2
gremlin> g.withComputer().V(1,1).count()
==>1
Solution
i'd say this is the bug:
gremlin> g.V(1,1).count()
==>2

i wonder when that got introduced.......
Was this page helpful?