Skip to content

Commit 482546b

Browse files
committed
Remove unused method
1 parent 83d194e commit 482546b

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

datafusion/common/src/tree_node.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -745,16 +745,6 @@ impl<T> Transformed<T> {
745745
Ok(self)
746746
}
747747

748-
pub fn on_transform_children(mut self) -> Transformed<T> {
749-
self.tnr = match self.tnr {
750-
TreeNodeRecursion::Continue => TreeNodeRecursion::Jump,
751-
TreeNodeRecursion::Jump => TreeNodeRecursion::Continue,
752-
TreeNodeRecursion::Stop => TreeNodeRecursion::Stop,
753-
};
754-
755-
self
756-
}
757-
758748
/// Maps the [`Transformed`] object to the result of the given `f` depending on the
759749
/// current [`TreeNodeRecursion`] value and the fact that `f` is changing the current
760750
/// node's sibling.

0 commit comments

Comments
 (0)