Skip to content

Commit d944a7d

Browse files
committed
remove unused variables
1 parent ec4fa8a commit d944a7d

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/iso.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,6 @@ use num_traits::{cast::FromPrimitive, Euclid};
5959
pub(crate) const MIN_ISO_YEAR: i32 = -271821;
6060
/// Maximum supported year (275760-09-13T00:00:00Z corresponds to ECMAScript's maximum time value)
6161
pub(crate) const MAX_ISO_YEAR: i32 = 275760;
62-
/// Minimum month value per ISO 8601
63-
pub(crate) const MIN_ISO_MONTH: u8 = 1;
64-
/// Maximum month value per ISO 8601
65-
pub(crate) const MAX_ISO_MONTH: u8 = 12;
66-
/// Minimum day value per ISO 8601
67-
pub(crate) const MIN_ISO_DAY: u8 = 1;
68-
/// Maximum hour value per ISO 8601 (24-hour format, 0-23)
69-
pub(crate) const MAX_ISO_HOUR: u8 = 23;
70-
/// Maximum minute value per ISO 8601
71-
pub(crate) const MAX_ISO_MINUTE: u8 = 59;
72-
/// Maximum second value per ISO 8601
73-
pub(crate) const MAX_ISO_SECOND: u8 = 59;
7462

7563
/// `IsoDateTime` is the record of the `IsoDate` and `IsoTime` internal slots.
7664
#[non_exhaustive]

0 commit comments

Comments
 (0)