diff options
author | Guillem Jover <guillem@debian.org> | 2017-05-17 23:42:17 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2017-05-20 05:21:33 +0200 |
commit | dd3cdbaf21841205a47d980a6678672973847d10 (patch) | |
tree | ec65d123baa2f51a163d3c1db4fa5e9e0780d52b /scripts/Dpkg/Compression | |
parent | 0b020bec8cffe1bf21931f868262d7a34592d1a3 (diff) | |
download | dpkg-dd3cdbaf21841205a47d980a6678672973847d10.tar.gz |
test: Enable perlcritic Miscellanea::ProhibitTies
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 dd9ae6966..d7014e8c4 100644 --- a/scripts/Dpkg/Compression/FileHandle.pm +++ b/scripts/Dpkg/Compression/FileHandle.pm @@ -129,7 +129,7 @@ sub new { my $self = IO::File->new(); # Tying is required to overload the open functions and to auto-open # the file on first read/write operation - tie *$self, $class, $self; + tie *$self, $class, $self; ## no critic (Miscellanea::ProhibitTies) bless $self, $class; # Initializations *$self->{compression} = 'auto'; |