refactor: Eliminate a clone that's no longer necessary
This commit is contained in:
parent
7536a98da1
commit
17fee7938a
1 changed files with 1 additions and 2 deletions
|
@ -706,8 +706,7 @@ impl<R: Read + Seek> ZipArchive<R> {
|
|||
let target = target.into_boxed_str();
|
||||
let target_is_dir_from_archive =
|
||||
self.shared.files.contains_key(&target) && is_dir(&target);
|
||||
let target_internal_path: PathBuf = target.to_string().into();
|
||||
let target_path = directory.as_ref().join(target_internal_path.clone());
|
||||
let target_path = directory.as_ref().join(target.to_string().into());
|
||||
let target_is_dir = if target_is_dir_from_archive {
|
||||
true
|
||||
} else if let Ok(meta) = std::fs::metadata(&target_path) {
|
||||
|
|
Loading…
Add table
Reference in a new issue