From b9f76e2fda96fad6fb0f77dc2ef2314aca84f5a4 Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Fri, 1 Jul 2022 11:57:24 +0200 Subject: Warning fixes --- src/pipeline/physics_pipeline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pipeline') diff --git a/src/pipeline/physics_pipeline.rs b/src/pipeline/physics_pipeline.rs index ea0f239..d1c3b65 100644 --- a/src/pipeline/physics_pipeline.rs +++ b/src/pipeline/physics_pipeline.rs @@ -14,7 +14,7 @@ use crate::geometry::{ ContactManifoldIndex, NarrowPhase, TemporaryInteractionIndex, }; use crate::math::{Real, Vector}; -use crate::pipeline::{ActiveEvents, EventHandler, PhysicsHooks}; +use crate::pipeline::{EventHandler, PhysicsHooks}; use {crate::dynamics::RigidBodySet, crate::geometry::ColliderSet}; /// The physics pipeline, responsible for stepping the whole physics simulation. -- cgit