fix: remove cache generic from builder (#3322)

Just a small fix, remove generic argument that I think was unused.
This commit is contained in:
Tim de Jager
2024-04-30 15:27:55 +02:00
committed by GitHub
parent 71fbd25a09
commit 9ae116f82b
+1 -1
View File
@@ -102,7 +102,7 @@ impl<'a> RegistryClientBuilder<'a> {
}
#[must_use]
pub fn cache<T>(mut self, cache: Cache) -> Self {
pub fn cache(mut self, cache: Cache) -> Self {
self.cache = cache;
self
}