diff options
author | Sadie Powell <sadie@witchery.services> | 2021-01-25 12:13:54 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-01-25 12:39:56 +0000 |
commit | f6b861f12d070ba931d829505bfd3229653f5df2 (patch) | |
tree | b043d1e05d9703ab0ec29be91055d793f0fd93d0 /make/common.pm | |
parent | cc28ba0f2164ea68db1bc373ee06fc58f82c3314 (diff) |
Fix unnecessary begin blocks in Perl source files.
Diffstat (limited to 'make/common.pm')
-rw-r--r-- | make/common.pm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/make/common.pm b/make/common.pm index 4d4cd397c..38b77e215 100644 --- a/make/common.pm +++ b/make/common.pm @@ -17,13 +17,9 @@ # -BEGIN { - require 5.10.0; -} - package make::common; -use feature ':5.10'; +use v5.10.0; use strict; use warnings FATAL => qw(all); |