From: G. Richardson Date: Wed, 19 Apr 2017 12:38:42 +0000 (+0200) Subject: find-use.pl - Fehlergebnisse per Regex rausfiltern X-Git-Tag: release-3.5.4~1114 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=ade508b5b3df74c0f55d0f46ab6c062ef3331132;p=kivitendo-erp.git find-use.pl - Fehlergebnisse per Regex rausfiltern --- diff --git a/scripts/find-use.pl b/scripts/find-use.pl index 320a3690a..351ed86db 100755 --- a/scripts/find-use.pl +++ b/scripts/find-use.pl @@ -81,6 +81,7 @@ find(sub { next if /SL::/; next if /Support::Files/; # our own test support module next if /use (warnings|strict|vars|lib|constant|utf8)/; + next if /^use (with|the)/; my ($useline) = m/^use\s+(.*?)$/;