Skip to content

Commit

Permalink
self-review
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Jan 9, 2024
1 parent 0934f04 commit 88989df
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion crates/re_query/src/archetype_view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ where
/// the required [`Component`]s using [`InstanceKey`] values.
#[derive(Clone, Debug)]
pub struct ArchetypeView<A: Archetype> {
// pub(crate) primary_data_time: Option<TimeInt>,
pub(crate) primary_row_id: RowId,
pub(crate) components: BTreeMap<ComponentName, ComponentWithInstances>,
pub(crate) phantom: PhantomData<A>,
Expand Down
2 changes: 1 addition & 1 deletion crates/re_viewer/src/blueprint/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub(crate) fn validate_component<C: Component>(blueprint: &EntityDb) -> bool {
if let Some([Some(cell)]) = blueprint
.data_store()
.latest_at(&query, path, C::name(), &[C::name()])
.map(|(_, cells)| cells)
.map(|(_, _, cells)| cells)
{
if let Err(err) = cell.try_to_native_mono::<C>() {
re_log::debug!(
Expand Down

0 comments on commit 88989df

Please sign in to comment.