1
Fork 0

Fix check issue

Clean up tidy checks
This commit is contained in:
Will Crichton 2021-05-30 10:00:44 -07:00
parent 4b3f82ad03
commit 7831fee9f8
5 changed files with 24 additions and 14 deletions

View file

@ -2466,7 +2466,7 @@ fn render_call_locations(
let filtered_locations: Vec<_> = call_locations
.iter()
.filter_map(|(file, locs)| {
// TODO(wcrichto): file I/O should be cached
// FIXME(wcrichto): file I/O should be cached
let mut contents = match fs::read_to_string(&file) {
Ok(contents) => contents,
Err(e) => {