Skip to content

Commit 24b4dfc

Browse files
committed
Remove commented out line.
1 parent b815ecc commit 24b4dfc

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/librustc_typeck/check_unused.rs

-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ pub fn check_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) {
6666
let mut used_trait_imports = DefIdSet();
6767
for &body_id in tcx.hir.krate().bodies.keys() {
6868
let item_def_id = tcx.hir.body_owner_def_id(body_id);
69-
// let tables = tcx.typeck_tables_of(item_def_id);
7069
let imports = tcx.used_trait_imports(item_def_id);
7170
debug!("GatherVisitor: item_def_id={:?} with imports {:#?}", item_def_id, imports);
7271
used_trait_imports.extend(imports.iter());

0 commit comments

Comments
 (0)