Skip to content

Commit 4982455

Browse files
committed
refactor(source): Hide functions not needed elsewhere
1 parent b89d18b commit 4982455

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cargo/sources/path.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl<'gctx> PathSource<'gctx> {
9191
}
9292

9393
/// Gets the last modified file in a package.
94-
pub fn last_modified_file(&self, pkg: &Package) -> CargoResult<(FileTime, PathBuf)> {
94+
fn last_modified_file(&self, pkg: &Package) -> CargoResult<(FileTime, PathBuf)> {
9595
if self.package.is_none() {
9696
return Err(internal(format!(
9797
"BUG: source `{:?}` was not loaded",
@@ -271,7 +271,7 @@ impl<'gctx> RecursivePathSource<'gctx> {
271271
}
272272

273273
/// Gets the last modified file in a package.
274-
pub fn last_modified_file(&self, pkg: &Package) -> CargoResult<(FileTime, PathBuf)> {
274+
fn last_modified_file(&self, pkg: &Package) -> CargoResult<(FileTime, PathBuf)> {
275275
if !self.loaded {
276276
return Err(internal(format!(
277277
"BUG: source `{:?}` was not loaded",

0 commit comments

Comments
 (0)