style: Remove an unused import on Windows

This commit is contained in:
Chris Hennick 2024-05-14 13:11:57 -07:00
parent d96ba59197
commit 0ec043d6be
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -698,7 +698,6 @@ impl<R: Read + Seek> ZipArchive<R> {
}
#[cfg(windows)]
{
use std::os::windows::ffi::OsStrExt;
let target_path: PathBuf = directory.as_ref().join(OsStr::from_vec(target));
if target_path.is_dir() {
std::os::windows::fs::symlink_dir(target_path, outpath.as_path())?;