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

@ -131,13 +131,6 @@ func (it *Materialize) Describe() graph.Description {
// Register this iterator as a Materialize iterator.
func (it *Materialize) Type() graph.Type { return graph.Materialize }
// DEPRECATED
func (it *Materialize) ResultTree() *graph.ResultTree {
tree := graph.NewResultTree(it.Result())
tree.AddSubtree(it.subIt.ResultTree())
return tree
}
func (it *Materialize) Result() graph.Value {
if it.aborted {
return it.subIt.Result()