diff options
author | Daniel Dragan <bulk88@hotmail.com> | 2015-05-29 01:48:11 -0400 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2015-06-03 12:07:24 +1000 |
commit | 22055af9e016af9a72e361e971f19d9ba3a83243 (patch) | |
tree | 45a4513cbe78f9aba96b1174a83eee05da632685 /regen/feature.pl | |
parent | 1c68cbf70f1d1b9aaa6a927943d4f1c075ce8d1c (diff) | |
download | perl-22055af9e016af9a72e361e971f19d9ba3a83243.tar.gz |
feature.pm remove unused lexicals
Diffstat (limited to 'regen/feature.pl')
-rwxr-xr-x | regen/feature.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regen/feature.pl b/regen/feature.pl index 6a188cfd8d..115c5a5c32 100755 --- a/regen/feature.pl +++ b/regen/feature.pl @@ -722,7 +722,7 @@ bundle is automatically loaded instead. =cut sub import { - my $class = shift; + shift; if (!@_) { croak("No features specified"); @@ -732,7 +732,7 @@ sub import { } sub unimport { - my $class = shift; + shift; # A bare C<no feature> should reset to the default bundle if (!@_) { |