diff --git a/src/write.rs b/src/write.rs index 0fcb55af..a8a31a53 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1807,7 +1807,6 @@ fn clamp_opt>( value: T, range: std::ops::RangeInclusive, ) -> Option { - use core::convert::TryInto; if range.contains(&value.try_into().ok()?) { Some(value) } else {