summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-11-21 14:13:00 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-11-21 14:13:00 +0000
commitbc4a802281a70ea00ca5309bf91bd291a773c6ab (patch)
tree551c7df19274d45825c17defd1c3fd5ceb54b668 /ext
parentb81060d6a6f72d4d81c48e5d8d024423810b6ce8 (diff)
downloadperl-bc4a802281a70ea00ca5309bf91bd291a773c6ab.tar.gz
Redundant return.
p4raw-id: //depot/perl@13164
Diffstat (limited to 'ext')
-rw-r--r--ext/MIME/Base64/QuotedPrint.pm1
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