From 886c443adbfdb2af1e06d01a826b5276d2e59348 Mon Sep 17 00:00:00 2001 From: eugenesvk Date: Thu, 5 Dec 2024 16:57:48 +0700 Subject: [PATCH] fmt --- src/freedesktop.rs | 6 +++++- src/windows.rs | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) 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) } }