Skip to content

Commit

Permalink
Fix redundant import warnings (#696)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc authored Feb 22, 2024
1 parent 096445d commit 9c581bf
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion crates/examples/src/bin/dwarf-validate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use std::borrow::{Borrow, Cow};
use std::env;
use std::fs;
use std::io::{self, BufWriter, Write};
use std::iter::Iterator;
use std::path::{Path, PathBuf};
use std::process;
use std::sync::Mutex;
Expand Down
1 change: 0 additions & 1 deletion crates/examples/src/bin/dwarfdump.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ use std::fmt::{self, Debug};
use std::fs;
use std::io;
use std::io::{BufWriter, Write};
use std::iter::Iterator;
use std::mem;
use std::process;
use std::result;
Expand Down
2 changes: 1 addition & 1 deletion src/read/cfi.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#[cfg(feature = "read")]
use alloc::boxed::Box;

use core::cmp::{Ord, Ordering};
use core::cmp::Ordering;
use core::fmt::{self, Debug};
use core::iter::FromIterator;
use core::mem;
Expand Down
2 changes: 1 addition & 1 deletion src/write/op.rs
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ pub(crate) mod convert {
use super::*;
use crate::common::UnitSectionOffset;
use crate::read::{self, Reader};
use crate::write::{ConvertError, ConvertResult, UnitEntryId, UnitId};
use crate::write::{ConvertError, ConvertResult, UnitId};
use std::collections::HashMap;

impl Expression {
Expand Down

0 comments on commit 9c581bf

Please sign in to comment.