The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

TooMuchCode::ProhibitUnusedImport -- Find unused imports

DESCRIPTION

An "Unused Import" is usually a subroutine name imported by an use statement. For example, the word Dumper in the following statement:

    use Data::Dumper qw<Dumper>;

If the rest of program has not mention the word Dumper, then it can be deleted.