diff --git a/src/freedesktop.rs b/src/freedesktop.rs index 86bdb5c..0bc70c8 100644 --- a/src/freedesktop.rs +++ b/src/freedesktop.rs @@ -33,7 +33,11 @@ impl PlatformTrashContext { } } impl TrashContext { - pub(crate) fn delete_all_canonicalized(&self, full_paths: Vec, _with_info: bool) -> Result>, Error> { + pub(crate) fn delete_all_canonicalized( + &self, + full_paths: Vec, + _with_info: bool, + ) -> Result>, Error> { let home_trash = home_trash()?; let sorted_mount_points = get_sorted_mount_points()?; let home_topdir = home_topdir(&sorted_mount_points)?; diff --git a/src/windows.rs b/src/windows.rs index f0b24d7..e8434e0 100644 --- a/src/windows.rs +++ b/src/windows.rs @@ -74,7 +74,11 @@ impl TrashContext { } /// Removes all files and folder paths recursively. - pub(crate) fn delete_all_canonicalized(&self, full_paths: Vec, _with_info: bool) -> Result>, Error> { + pub(crate) fn delete_all_canonicalized( + &self, + full_paths: Vec, + _with_info: bool, + ) -> Result>, Error> { self.delete_specified_canonicalized(full_paths) } }