summaryrefslogtreecommitdiff
path: root/check_postgres.pl
diff options
context:
space:
mode:
authorGreg2009-06-03 01:00:12 +0000
committerGreg2009-06-03 01:00:12 +0000
commit175d6f9b269c6b03ddc800fc824dc6b534b54cab (patch)
tree80bc5c0b36820184a148797e62995f7685f13ec5 /check_postgres.pl
parentb0f76d33de121c826d3044e30c68b74ef7bc397b (diff)
More Perl::Critic tweaks
Diffstat (limited to 'check_postgres.pl')
-rwxr-xr-xcheck_postgres.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/check_postgres.pl b/check_postgres.pl
index a3c60b3e1..3725c4374 100755
--- a/check_postgres.pl
+++ b/check_postgres.pl
@@ -4262,10 +4262,10 @@ sub check_same_schema {
push @{$filter{"no${type}_regex"}} => $1;
}
}
- if ($phrase =~ /^noposition$/io) {
+ if ($phrase =~ /^noposition$/io) { ## no critic (ProhibitFixedStringMatches)
$filter{noposition} = 1;
}
- if ($phrase =~ /^nofuncbody$/io) {
+ if ($phrase =~ /^nofuncbody$/io) { ## no critic (ProhibitFixedStringMatches)
$filter{nofuncbody} = 1;
}
}