Skip to content

Commit

Permalink
Remove unused ParsedDateTime.has_offset
Browse files Browse the repository at this point in the history
  • Loading branch information
pR0Ps committed Sep 9, 2024
1 parent 3313f1b commit 8d5cbef
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions rust/src/parsing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ pub struct ParsedDateTime {
pub second: u32,
pub microsecond: u32,
pub offset: Option<i32>,
pub has_offset: bool,
pub tzname: Option<String>,
pub has_date: bool,
pub has_time: bool,
Expand All @@ -46,7 +45,6 @@ impl ParsedDateTime {
second: 0,
microsecond: 0,
offset: None,
has_offset: false,
tzname: None,
has_date: false,
has_time: false,
Expand Down

0 comments on commit 8d5cbef

Please sign in to comment.