From 35eb7168135aff88a8e77ef3769798aaeb2b646f Mon Sep 17 00:00:00 2001 From: SteveCookTU Date: Wed, 22 Feb 2023 00:56:04 -0500 Subject: [PATCH] Remove #[allow(non_upper_case_globals)] --- src/exceptions.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/exceptions.rs b/src/exceptions.rs index 8a908ec..6001fa5 100644 --- a/src/exceptions.rs +++ b/src/exceptions.rs @@ -35,7 +35,6 @@ pub enum Exceptions { ReaderDecodeException(), } -#[allow(non_upper_case_globals)] impl Exceptions { pub const ILLEGAL_ARGUMENT: Self = Self::IllegalArgumentException(String::new()); pub fn illegal_argument_with>(x: I) -> Self {