Remove redundant .iter_mut()
This commit is contained in:
parent
7a807c5b14
commit
9d73176978
@ -1655,7 +1655,7 @@ impl FileWithAnnotatedLines {
|
||||
line_index: usize,
|
||||
ann: Annotation) {
|
||||
|
||||
for slot in file_vec.iter_mut() {
|
||||
for slot in file_vec {
|
||||
// Look through each of our files for the one we're adding to
|
||||
if slot.file.name == file.name {
|
||||
// See if we already have a line for it
|
||||
|
Loading…
Reference in New Issue
Block a user