X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/cff913a1c984f82558a7d59dec0b8b1a06c5530d..e3159b228e66bd345e33efcda84af064217f4eb9:/scripts/find-use.pl diff --git a/scripts/find-use.pl b/scripts/find-use.pl index b9220d423..351ed86db 100755 --- a/scripts/find-use.pl +++ b/scripts/find-use.pl @@ -32,6 +32,7 @@ my (%uselines, %modules, %supplied, %requires); 'Rose::DB::Object::Metadata' => 1, 'Rose::DB::Object::Helpers' => 1, 'Rose::DB::Object::Util' => 1, + 'Rose::DB::Object::Constants' => 1, }, 'Rose::Object' => { 'Rose::Object::MakeMethods::Generic' => 1, @@ -80,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+(.*?)$/;