From 1d99cdc7dd2509b4c10d7cc2f1d0f8ecb69b3c08 Mon Sep 17 00:00:00 2001 From: rewin Date: Tue, 9 Jan 2024 22:23:34 +0300 Subject: [PATCH] clippy --- crates/undo/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/undo/src/lib.rs b/crates/undo/src/lib.rs index 4be42f66..12169027 100644 --- a/crates/undo/src/lib.rs +++ b/crates/undo/src/lib.rs @@ -4,7 +4,7 @@ use std::sync::Arc; use bevy::{prelude::*, utils::HashMap}; -use space_shared::{EditorSet, PrefabMarker}; +use space_shared::PrefabMarker; const MAX_REFLECT_RECURSION: i32 = 10; const AUTO_UNDO_LATENCY: i32 = 2;