summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Exporter/Heavy.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Exporter/Heavy.pm b/lib/Exporter/Heavy.pm
index 91ad61322b..95ffc554be 100644
--- a/lib/Exporter/Heavy.pm
+++ b/lib/Exporter/Heavy.pm
@@ -179,8 +179,7 @@ sub heavy_export_to_level
{
my $pkg = shift;
my $level = shift;
- # need to get rid of the first argument, its junk
- shift;
+ (undef) = shift; # XXX redundant arg
my $callpkg = caller($level);
$pkg->export($callpkg, @_);
}