Skip to content

Commit

Permalink
Issue #203: remove need for a '## no critic' declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Jul 27, 2020
1 parent e6d868a commit 17a0930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/otobo.CheckSum.pl
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ sub ProcessDirectory {
next FILE if $File =~ m{css-cache}smx;

# next if not readable
open( my $In, '<', $OrigFile ) || die "ERROR: $!"; ## no critic
open my $In, '<', $OrigFile or die "ERROR: $!";

my $DigestGenerator = Digest::MD5->new();
$DigestGenerator->addfile($In);
Expand Down

0 comments on commit 17a0930

Please sign in to comment.