From f2e1f6851e8268607816f6d175fb235fc4dd3400 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 16 Oct 2022 16:30:50 -0300 Subject: bin/*.pl: Do not "use strict" explicitly Ever since Pelr 5.12 (as in perl5120delta(1)), "use strict" is already done by default. Since all these files do use a number greater than 5.12 (5,34 as of this commit), this "use strict" is redundant. --- bin/x | 1 - 1 file changed, 1 deletion(-) (limited to 'bin/x') diff --git a/bin/x b/bin/x index b51ce96..e171061 100755 --- a/bin/x +++ b/bin/x @@ -1,7 +1,6 @@ #!/usr/bin/env perl use v5.34; -use strict; use warnings; use feature 'signatures'; no warnings ('experimental::signatures', 'experimental::smartmatch'); -- cgit v1.2.3