fix(warnings): remove unused imports to get rid of warnings

This commit is contained in:
Andrea Toska 2025-02-07 08:46:09 +01:00
commit f74cfd3ff3
21 changed files with 15 additions and 38 deletions

View file

@ -71,7 +71,7 @@ impl KerberosDateTime{
#[inline]
pub fn get_year(&self) -> u64{
((self.0 >> 26) & 0xFFFFFFFF)
(self.0 >> 26) & 0xFFFFFFFF
}
pub fn to_regular_time(&self) -> chrono::DateTime<Utc>{