From: Jarkko Hietaniemi Date: Wed, 21 Nov 2001 14:13:00 +0000 (+0000) Subject: Redundant return. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bc4a802281a70ea00ca5309bf91bd291a773c6ab;p=p5sagit%2Fp5-mst-13.2.git Redundant return. p4raw-id: //depot/perl@13164 --- diff --git a/ext/MIME/Base64/QuotedPrint.pm b/ext/MIME/Base64/QuotedPrint.pm index 409c716..0b93f20 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