From 43b8295db79fe475ac75cd17d11ac890497635dc Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Mon, 28 Oct 2024 14:05:44 -0500 Subject: [PATCH] Remove `use strict` and `use warnings` from the Shibboleth.pm module. Don't worry. The module is still strict and has warnings enabled. All modules that derive from `Mojo::Base` are. I forgot to remove these when changing to that, and those cause warnings since Mojo::Base disables the warnings for using signatures. --- lib/WeBWorK/Authen/Shibboleth.pm | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/WeBWorK/Authen/Shibboleth.pm b/lib/WeBWorK/Authen/Shibboleth.pm index a762a13aca..d0d1d419cb 100644 --- a/lib/WeBWorK/Authen/Shibboleth.pm +++ b/lib/WeBWorK/Authen/Shibboleth.pm @@ -32,9 +32,6 @@ C file. =cut -use strict; -use warnings; - use Digest; use WeBWorK::Debug qw(debug);