Remove #[allow(non_upper_case_globals)]

This commit is contained in:
SteveCookTU
2023-02-22 00:56:04 -05:00
committed by GitHub
parent f8b29f37db
commit 35eb716813

View File

@@ -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<I: Into<String>>(x: I) -> Self {