Skip to content

Commit

Permalink
Optimize use statement (bevyengine#5992)
Browse files Browse the repository at this point in the history
Just a very small `use` statement thing. Check the changed file.
  • Loading branch information
Nilirad authored and ItsDoot committed Feb 1, 2023
1 parent 67fe09e commit 115bd96
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions crates/bevy_ecs/src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@ use crate as bevy_ecs;
use crate::system::{Local, Res, ResMut, Resource, SystemParam};
use bevy_utils::tracing::{trace, warn};
use std::ops::{Deref, DerefMut};
use std::{
fmt::{self},
hash::Hash,
marker::PhantomData,
};
use std::{fmt, hash::Hash, marker::PhantomData};

/// A type that can be stored in an [`Events<E>`] resource
/// You can conveniently access events using the [`EventReader`] and [`EventWriter`] system parameter.
Expand Down

0 comments on commit 115bd96

Please sign in to comment.