Refactor: From<Infallible> is unreachable

This commit is contained in:
Chris Hennick 2023-06-01 13:11:42 -07:00
parent 07679d3b7f
commit a6a6484bf8
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -104,7 +104,7 @@ impl From<TryFromIntError> for DateTimeRangeError {
impl From<Infallible> for DateTimeRangeError { impl From<Infallible> for DateTimeRangeError {
fn from(_value: Infallible) -> Self { fn from(_value: Infallible) -> Self {
DateTimeRangeError unreachable!()
} }
} }