Remove deprecated ResultTree API

This commit is contained in:
Andrew Dunham 2015-04-28 15:57:35 -07:00
parent 07303c708b
commit 189961cb8d
23 changed files with 0 additions and 221 deletions

View file

@ -102,16 +102,6 @@ func (it *And) SubIterators() []graph.Iterator {
return iters
}
// DEPRECATED Returns the ResultTree for this iterator, recurses to it's subiterators.
func (it *And) ResultTree() *graph.ResultTree {
tree := graph.NewResultTree(it.Result())
tree.AddSubtree(it.primaryIt.ResultTree())
for _, sub := range it.internalIterators {
tree.AddSubtree(sub.ResultTree())
}
return tree
}
func (it *And) Describe() graph.Description {
subIts := make([]graph.Description, len(it.internalIterators))
for i, sub := range it.internalIterators {