projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
b81060d
)
Redundant return.
Jarkko Hietaniemi [Wed, 21 Nov 2001 14:13:00 +0000 (14:13 +0000)]
p4raw-id: //depot/perl@13164
ext/MIME/Base64/QuotedPrint.pm
patch
|
blob
|
blame
|
history
diff --git
a/ext/MIME/Base64/QuotedPrint.pm
b/ext/MIME/Base64/QuotedPrint.pm
index
409c716
..
0b93f20
100644
(file)
--- 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