diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-21 14:13:00 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-21 14:13:00 +0000 |
commit | bc4a802281a70ea00ca5309bf91bd291a773c6ab (patch) | |
tree | 551c7df19274d45825c17defd1c3fd5ceb54b668 /ext | |
parent | b81060d6a6f72d4d81c48e5d8d024423810b6ce8 (diff) | |
download | perl-bc4a802281a70ea00ca5309bf91bd291a773c6ab.tar.gz |
Redundant return.
p4raw-id: //depot/perl@13164
Diffstat (limited to 'ext')
-rw-r--r-- | ext/MIME/Base64/QuotedPrint.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/MIME/Base64/QuotedPrint.pm b/ext/MIME/Base64/QuotedPrint.pm index 409c716485..0b93f2062f 100644 --- a/ext/MIME/Base64/QuotedPrint.pm +++ b/ext/MIME/Base64/QuotedPrint.pm @@ -169,7 +169,6 @@ sub FILL my ($obj,$fh) = @_; my $line = <$fh>; return (defined $line) ? decode_qp($line) : undef; - return undef; } sub WRITE |