Remove useless generic parameter

This commit is contained in:
ShuiRuTian 2024-06-14 12:00:45 +08:00
parent 4a7bee9d05
commit 47f680fe4f
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ where
/// Hard links a cache entry by hash to a specified location.
#[cfg(any(feature = "async-std", feature = "tokio"))]
pub async fn hard_link_hash<P, K, Q>(cache: P, key: &Integrity, to: Q) -> Result<()>
pub async fn hard_link_hash<P, Q>(cache: P, key: &Integrity, to: Q) -> Result<()>
where
P: AsRef<Path>,
Q: AsRef<Path>,