Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

index: split readonly/mutable index types to sub modules #2693

Merged
merged 8 commits into from
Dec 12, 2023
5 changes: 2 additions & 3 deletions lib/src/default_index/composite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@ use std::sync::Arc;

use itertools::Itertools;

use super::readonly::ReadonlyIndexSegment;
use super::rev_walk::RevWalk;
use super::{
IndexEntry, IndexPosition, IndexPositionByGeneration, IndexSegment, ReadonlyIndexSegment,
};
use super::{IndexEntry, IndexPosition, IndexPositionByGeneration, IndexSegment};
use crate::backend::{CommitId, ObjectId};
use crate::index::{HexPrefix, Index, PrefixResolution};
use crate::revset::{ResolvedExpression, Revset, RevsetEvaluationError};
Expand Down
Loading