Skip to content

Commit bf4581c

Browse files
committed
Remove remaining use crate as.
1 parent 224c7d8 commit bf4581c

File tree

25 files changed

+10
-35
lines changed

25 files changed

+10
-35
lines changed

crates/bevy_ecs/src/event/collections.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate as bevy_ecs;
21
use alloc::vec::Vec;
32
use bevy_ecs::{
43
event::{Event, EventCursor, EventId, EventInstance},

crates/bevy_ecs/src/event/event_cursor.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate as bevy_ecs;
21
use bevy_ecs::event::{
32
Event, EventIterator, EventIteratorWithId, EventMutIterator, EventMutIteratorWithId, Events,
43
};

crates/bevy_ecs/src/event/iterators.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate as bevy_ecs;
21
#[cfg(feature = "multi_threaded")]
32
use bevy_ecs::batching::BatchingStrategy;
43
use bevy_ecs::event::{Event, EventCursor, EventId, EventInstance, Events};

crates/bevy_ecs/src/event/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ pub use writer::EventWriter;
3131

3232
#[cfg(test)]
3333
mod tests {
34-
use crate as bevy_ecs;
3534
use alloc::{vec, vec::Vec};
3635
use bevy_ecs::{event::*, system::assert_is_read_only_system};
3736
use bevy_ecs_macros::Event;

crates/bevy_ecs/src/event/mut_iterators.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate as bevy_ecs;
21
#[cfg(feature = "multi_threaded")]
32
use bevy_ecs::batching::BatchingStrategy;
43
use bevy_ecs::event::{Event, EventCursor, EventId, EventInstance, Events};

crates/bevy_ecs/src/event/mutator.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate as bevy_ecs;
21
#[cfg(feature = "multi_threaded")]
32
use bevy_ecs::event::EventMutParIter;
43
use bevy_ecs::{

crates/bevy_ecs/src/event/reader.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate as bevy_ecs;
21
#[cfg(feature = "multi_threaded")]
32
use bevy_ecs::event::EventParIter;
43
use bevy_ecs::{

crates/bevy_ecs/src/event/registry.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate as bevy_ecs;
21
use alloc::vec::Vec;
32
use bevy_ecs::{
43
change_detection::{DetectChangesMut, MutUntyped},

crates/bevy_ecs/src/event/update.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate as bevy_ecs;
21
use bevy_ecs::{
32
change_detection::Mut,
43
component::Tick,

crates/bevy_ecs/src/event/writer.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate as bevy_ecs;
21
use bevy_ecs::{
32
event::{Event, EventId, Events, SendBatchIds},
43
system::{ResMut, SystemParam},

0 commit comments

Comments
 (0)