fix(solc): remove unnecessary indent (#999)

* fix(solc): remove unnecessary indent

* Update ethers-solc/src/resolver/tree.rs

Co-authored-by: Georgios Konstantopoulos <me@gakonst.com>
This commit is contained in:
Matthias Seitz 2022-03-09 18:44:02 +01:00 committed by GitHub
parent fab30887a2
commit e1ec4b5ecd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -157,11 +157,6 @@ fn print_imports(
return Ok(())
}
for continues in &**levels_continue {
let c = if *continues { symbols.down } else { " " };
write!(out, "{} ", c)?;
}
let mut iter = imports.iter().peekable();
while let Some(import) = iter.next() {