summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Rothenberg <rrwo@cpan.org>2020-03-24 22:19:03 +0000
committerRobert Rothenberg <rrwo@cpan.org>2020-03-24 22:19:03 +0000
commita45908186b5ced6fb89d65bd6afacd33ae8afb8c (patch)
treeec9c1378b7744cf5777186cf53ced13ad88c490c
parentd98e6859eeb63cf84c1aa96e553c10e1ca73040c (diff)
Remove AutoLoader
-rw-r--r--Changes2
-rw-r--r--lib/Sys/CpuLoad.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/Changes b/Changes
index bf77e2f..9536813 100644
--- a/Changes
+++ b/Changes
@@ -10,6 +10,8 @@ Revision history for Perl extension Sys::CpuLoad
[Bug Fixes]
- Fixed VERSION.
+ - Removed unnecessary use of AutoLoader.
+
[Incompatabilities]
- Minimum version is v5.6.
diff --git a/lib/Sys/CpuLoad.pm b/lib/Sys/CpuLoad.pm
index 14c6303..0e0530c 100644
--- a/lib/Sys/CpuLoad.pm
+++ b/lib/Sys/CpuLoad.pm
@@ -9,7 +9,7 @@ use v5.6;
use strict;
use warnings;
-use parent qw(Exporter AutoLoader DynaLoader);
+use parent qw(Exporter DynaLoader);
use IO::File;