From 99aded446dbbe880918926402623ddbafb8130fd Mon Sep 17 00:00:00 2001 From: gwenn Date: Thu, 21 Oct 2021 19:48:38 +0200 Subject: [PATCH] Fix error: the item `TryInto` is imported redundantly --- src/blob/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/blob/mod.rs b/src/blob/mod.rs index 2b13e1d..dddfdcd 100644 --- a/src/blob/mod.rs +++ b/src/blob/mod.rs @@ -272,7 +272,6 @@ impl Blob<'_> { /// Return the current size in bytes of the BLOB. #[inline] pub fn len(&self) -> usize { - use std::convert::TryInto; self.size().try_into().unwrap() }