Skip to content

Commit

Permalink
Make get_inner private
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinou01 committed Sep 3, 2024
1 parent affca72 commit 857f5cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rattler_cache/src/package_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ impl PackageCache {
}
}

pub fn get_inner(&self) -> Arc<Mutex<PackageCacheInner>> {
fn get_inner(&self) -> Arc<Mutex<PackageCacheInner>> {
match self {
Self::SingletonPackageCache { inner } => inner.clone(),
}
Expand Down

0 comments on commit 857f5cc

Please sign in to comment.