diff options
author | Guillem Jover <guillem@debian.org> | 2013-01-05 04:20:49 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2013-06-22 05:15:04 +0200 |
commit | e4dbdb84480f844f27501f301cefed6b38ac2221 (patch) | |
tree | 9e193fb0df94af8114fd148a81da78927b9b3b4e /scripts/Dpkg/Compression | |
parent | e54df633c60ed89dc9fed2c43b1ad6d07f439fc9 (diff) | |
download | dpkg-e4dbdb84480f844f27501f301cefed6b38ac2221.tar.gz |
scripts: Inherit from parent instead of base
Use the lightweight parent instead of the bloated base.
Diffstat (limited to 'scripts/Dpkg/Compression')
-rw-r--r-- | scripts/Dpkg/Compression/FileHandle.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Dpkg/Compression/FileHandle.pm b/scripts/Dpkg/Compression/FileHandle.pm index 9ef57167a..6fbb7c0b5 100644 --- a/scripts/Dpkg/Compression/FileHandle.pm +++ b/scripts/Dpkg/Compression/FileHandle.pm @@ -26,7 +26,7 @@ use Dpkg::Gettext; use Dpkg::ErrorHandling; use POSIX qw(:signal_h :sys_wait_h); -use base qw(FileHandle Tie::Handle); +use parent qw(FileHandle Tie::Handle); # Useful reference to understand some kludges required to # have the object behave like a filehandle |