diff --git a/crates/bevy_reflect/src/func/function_map.rs b/crates/bevy_reflect/src/func/function_map.rs index 8fb8aa3ea0..98f61af13d 100644 --- a/crates/bevy_reflect/src/func/function_map.rs +++ b/crates/bevy_reflect/src/func/function_map.rs @@ -2,7 +2,6 @@ use crate::func::signature::ArgumentSignature; use crate::func::{ArgList, FunctionError, FunctionInfo, FunctionInfoType, FunctionOverloadError}; use alloc::borrow::Cow; use bevy_utils::hashbrown::HashMap; -use bevy_utils::NoOpHash; use core::ops::RangeInclusive; /// A helper type for storing a mapping of overloaded functions @@ -28,7 +27,7 @@ pub(super) enum FunctionMap { /// A mapping of argument signatures to the index of the corresponding function. /// /// Multiple signatures may point to the same function index (i.e. for manually created overloads). - HashMap, + HashMap, ), }