Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src-tauri/src/git/log_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,6 @@ impl LogCache {
Some(out)
}

/// File a freshly prepared walk, evicting the least recently used one.
/// Whether a walk for `key` is already filed, whatever it can answer.
///
/// Not the same question as `first_page`, and the difference is the point.
Expand All @@ -270,6 +269,7 @@ impl LogCache {
.unwrap_or(false)
}

/// File a freshly prepared walk, evicting the least recently used one.
pub fn insert(&self, repo: &RepoId, key: WalkKey, order: Arc<WalkOrder>) {
let Ok(mut repos) = self.repos.lock() else {
return;
Expand Down