Skip to content

Commit 27343ea

Browse files
committed
remove this
1 parent 34197e7 commit 27343ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: gix-odb/src/store_impls/dynamic/load_index.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ impl super::Store {
257257

258258
// Figure out this number based on what we see while handling the existing indices
259259
let mut num_loaded_indices = 0;
260+
dbg!(indices_by_modification_time.len());
260261
for (index_info, mtime) in indices_by_modification_time.into_iter().map(|(a, b, _)| (a, b)) {
261262
match idx_by_index_path.remove(index_info.path()) {
262263
Some(slot_idx) => {
@@ -295,7 +296,7 @@ impl super::Store {
295296
.map_or(0, |idx| (idx + 1) % self.files.len());
296297
let mut num_indices_checked = 0;
297298
let mut needs_generation_change = false;
298-
dbg!(idx_by_index_path.len());
299+
dbg!(index_paths_to_add.len(), next_possibly_free_index);
299300
let mut slot_indices_to_remove: Vec<_> = idx_by_index_path.into_values().collect();
300301
while let Some((mut index_info, mtime, move_from_slot_idx)) = index_paths_to_add.pop_front() {
301302
'increment_slot_index: loop {

0 commit comments

Comments
 (0)