Optimize use statement (#5992)

Just a very small `use` statement thing. Check the changed file.
This commit is contained in:
Federico Rinaldi 2022-09-15 17:05:09 +00:00
parent c256c38486
commit deeab3fc90

View File

@ -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.