Remove redundant .iter_mut()
This commit is contained in:
parent
7a807c5b14
commit
9d73176978
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue