Skip to content

Commit d1a3891

Browse files
committed
Remove unused method.
Signed-off-by: James Goppert <james.goppert@gmail.com>
1 parent 28052d2 commit d1a3891

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/s2_analysis/visitor.rs

-4
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ pub trait Visitor<'a> {
2727

2828
fn enter_component_declaration(&mut self, _comp: &'a ast::ComponentDeclaration) {}
2929
fn exit_component_declaration(&mut self, _comp: &'a ast::ComponentDeclaration) {}
30-
31-
fn walk<T: Visitable<'a> + ?Sized>(&'a mut self, node: &'a T) {
32-
node.accept(self);
33-
}
3430
}
3531

3632
pub trait Visitable<'a> {

0 commit comments

Comments
 (0)