NAME
TooMuchCode::ProhibitUnusedImport -- Find unused imports
DESCRIPTION
An "Unused Import" is usually a subroutine name imported by a use statement. For example, the word Dumper in the following statement:
use Data::Dumper qw<Dumper>;
If the rest of program has not mentioned the word Dumper, then it can be deleted.