Fix error: the item TryInto is imported redundantly

This commit is contained in:
gwenn 2021-10-21 19:48:38 +02:00
parent 2f508e7a38
commit 99aded446d

View File

@ -272,7 +272,6 @@ impl Blob<'_> {
/// Return the current size in bytes of the BLOB. /// Return the current size in bytes of the BLOB.
#[inline] #[inline]
pub fn len(&self) -> usize { pub fn len(&self) -> usize {
use std::convert::TryInto;
self.size().try_into().unwrap() self.size().try_into().unwrap()
} }