mirror of https://github.com/zkat/cacache-rs.git
Remove useless generic parameter
This commit is contained in:
parent
4a7bee9d05
commit
47f680fe4f
|
|
@ -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>,
|
||||
|
|
|
|||
Loading…
Reference in New Issue