This commit is contained in:
Yuki Okushi 2026-02-11 12:41:27 +09:00
parent a1a26e9b53
commit 7e192b6079
1 changed files with 1 additions and 4 deletions

View File

@ -1006,10 +1006,7 @@ fn format_reachability(item: &IntrospectionReportItem) -> String {
.iter()
.map(|note| sanitize_text(note))
.collect::<Vec<_>>();
format!(
" | PotentiallyUnreachable | Notes: {:?}",
notes
)
format!(" | PotentiallyUnreachable | Notes: {:?}", notes)
}
}