Skip to content

Commit

Permalink
Merge pull request #1615 from mulkieran/master-clippy
Browse files Browse the repository at this point in the history
Remove an unneeded clippy allow
  • Loading branch information
mulkieran authored Aug 21, 2019
2 parents 3ee8c49 + efcfb2b commit c50ec12
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/engine/strat_engine/backstore/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ use crate::{
pub fn find_all() -> StratisResult<HashMap<PoolUuid, HashMap<Device, PathBuf>>> {
let mut pool_map = HashMap::new();

// NOTE: The allow is required due to a false positive in clippy 1.35.
// See issue: https://github.com/rust-lang/rust-clippy/issues/4133.
#[allow(clippy::identity_conversion)]
for devnode in get_stratis_block_devices()? {
match devnode_to_devno(&devnode)? {
None => continue,
Expand Down

0 comments on commit c50ec12

Please sign in to comment.