Skip to content

Commit

Permalink
Fmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
tychedelia committed Jan 30, 2025
1 parent 9ca6029 commit e291115
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions crates/bevy_pbr/src/render/light.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ use bevy_render::{
};
use bevy_transform::{components::GlobalTransform, prelude::Transform};
use bevy_utils::default;
use core::{hash::Hash, ops::Range, marker::PhantomData};
use core::{hash::Hash, marker::PhantomData, ops::Range};
#[cfg(feature = "trace")]
use tracing::info_span;
use tracing::{error, warn};
Expand Down Expand Up @@ -1595,9 +1595,7 @@ pub fn check_entities_needing_specialization<M: Material>(
}

for removed in removed_components.read() {
entities_needing_specialization
.entities
.push(removed);
entities_needing_specialization.entities.push(removed);
}
}

Expand Down

0 comments on commit e291115

Please sign in to comment.