We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Node
resolve.rs
1 parent d655ee1 commit 7301ca1Copy full SHA for 7301ca1
gix-pack/src/cache/delta/traverse/resolve.rs
@@ -15,9 +15,9 @@ use crate::{
15
};
16
17
/// An item returned by `iter_root_chunks`, allowing access to the `data` stored alongside nodes in a [`Tree`].
18
-pub(crate) struct Node<'a, T: Send> {
19
- pub item: &'a mut Item<T>,
20
- pub child_items: ItemSliceSend<'a, Item<T>>,
+struct Node<'a, T: Send> {
+ item: &'a mut Item<T>,
+ child_items: ItemSliceSend<'a, Item<T>>,
21
}
22
23
impl<'a, T: Send> Node<'a, T> {
@@ -225,7 +225,7 @@ where
225
/// system. Since this thread will take a controlling function, we may spawn one more than that. In threaded mode, we will finish
226
/// all remaining work.
227
#[allow(clippy::too_many_arguments)]
228
-pub(crate) fn deltas_mt<T, F, MBFN, E, R>(
+fn deltas_mt<T, F, MBFN, E, R>(
229
mut threads_to_create: isize,
230
decompressed_bytes_by_pack_offset: BTreeMap<u64, (data::Entry, u64, Vec<u8>)>,
231
objects: gix_features::progress::StepShared,
0 commit comments