From b63927d3ef59a9237153c618b2c82db32881ea7f Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Wed, 4 Jun 2025 20:43:51 -0700 Subject: [PATCH] Drop section used for debugging --- boot_diags/src/app.rs | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/boot_diags/src/app.rs b/boot_diags/src/app.rs index 52ab224..468f2d2 100644 --- a/boot_diags/src/app.rs +++ b/boot_diags/src/app.rs @@ -903,30 +903,6 @@ fn build_right_items(app: &App) -> Action { let mut items: Vec> = Vec::new(); let mut labels: Vec> = Vec::new(); let mut start_index = 0; - // TODO: DELETE THIS SECTION - items.push(vec![ - DVLine { - line_parts: vec![format!( - "Parts: {:?} // {:?}", - app.clone.part_index_boot, app.clone.part_index_os - )], - line_colors: vec![Color::Reset], - }, - DVLine { - line_parts: vec![format!( - "Selected: {:?} // {:?}", - app.list.selected(), - app.list.get_selected(), - )], - line_colors: vec![Color::Reset], - }, - DVLine { - line_parts: vec![String::from("-----")], - line_colors: vec![Color::Reset], - }, - ]); - start_index += 1; - // TODO: DELETE THIS SECTION match app.cur_mode { Mode::DiagMenu => { let mut header_lines: Vec = Vec::new();