Remove unneeded check_id calls as they are already called in visit_id in EarlyContextAndPass type
This commit is contained in:
@@ -136,7 +136,6 @@ impl<'ast, 'ecx, 'tcx, T: EarlyLintPass> ast_visit::Visitor<'ast>
|
|||||||
// the AST struct that they wrap (e.g. an item)
|
// the AST struct that they wrap (e.g. an item)
|
||||||
self.with_lint_attrs(s.id, s.attrs(), |cx| {
|
self.with_lint_attrs(s.id, s.attrs(), |cx| {
|
||||||
lint_callback!(cx, check_stmt, s);
|
lint_callback!(cx, check_stmt, s);
|
||||||
cx.check_id(s.id);
|
|
||||||
});
|
});
|
||||||
// The visitor for the AST struct wrapped
|
// The visitor for the AST struct wrapped
|
||||||
// by the statement (e.g. `Item`) will call
|
// by the statement (e.g. `Item`) will call
|
||||||
@@ -147,7 +146,6 @@ impl<'ast, 'ecx, 'tcx, T: EarlyLintPass> ast_visit::Visitor<'ast>
|
|||||||
|
|
||||||
fn visit_fn(&mut self, fk: ast_visit::FnKind<'ast>, span: Span, id: ast::NodeId) {
|
fn visit_fn(&mut self, fk: ast_visit::FnKind<'ast>, span: Span, id: ast::NodeId) {
|
||||||
lint_callback!(self, check_fn, fk, span, id);
|
lint_callback!(self, check_fn, fk, span, id);
|
||||||
self.check_id(id);
|
|
||||||
ast_visit::walk_fn(self, fk);
|
ast_visit::walk_fn(self, fk);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user