Skip to content

Commit

Permalink
Clippy-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
richardpringle committed Nov 1, 2023
1 parent 9279f82 commit f3041d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions firewood/src/merkle/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// See the file LICENSE.md for licensing terms.

use crate::shale::{
self, disk_address::DiskAddress, CachedStore, ShaleError, ShaleStore, Storable,
disk_address::DiskAddress, CachedStore, ShaleError, ShaleStore, Storable,
};
use bincode::{Error, Options};
use enum_as_inner::EnumAsInner;
Expand Down Expand Up @@ -852,7 +852,7 @@ pub(super) mod tests {
use std::array::from_fn;

use super::*;
use shale::cached::PlainMem;
use crate::shale::cached::PlainMem;
use test_case::test_case;

pub fn leaf(path: Vec<u8>, data: Vec<u8>) -> Node {
Expand Down
2 changes: 1 addition & 1 deletion firewood/src/shale/cached.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (C) 2023, Ava Labs, Inc. All rights reserved.
// See the file LICENSE.md for licensing terms.

use crate::shale::{self, CachedStore, CachedView, SendSyncDerefMut, SpaceId};
use crate::shale::{CachedStore, CachedView, SendSyncDerefMut, SpaceId};
use std::{
borrow::BorrowMut,
fmt::Debug,
Expand Down

0 comments on commit f3041d4

Please sign in to comment.