diff options
| author | fukachan <fukachan> | 2002-01-13 11:37:10 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2002-01-13 11:37:10 +0000 |
| commit | 2d487005f288e25bac20a0e2574a7f540cd37d80 (patch) | |
| tree | 30f176c28fa91712786b664623ca5976f1504523 /fml | |
| parent | 562b5035103af9970d6ac81f44bc843d1a69d8c1 (diff) | |
| download | fml8-2d487005f288e25bac20a0e2574a7f540cd37d80.tar.gz fml8-2d487005f288e25bac20a0e2574a7f540cd37d80.tar.bz2 fml8-2d487005f288e25bac20a0e2574a7f540cd37d80.zip | |
remove header(), data() method
Diffstat (limited to 'fml')
| -rw-r--r-- | fml/lib/Mail/Message.pm | 35 |
1 files changed, 1 insertions, 34 deletions
diff --git a/fml/lib/Mail/Message.pm b/fml/lib/Mail/Message.pm index 4b0ffe25..baf0eb38 100644 --- a/fml/lib/Mail/Message.pm +++ b/fml/lib/Mail/Message.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: Message.pm,v 1.36 2001/12/22 09:21:14 fukachan Exp $ +# $FML: Message.pm,v 1.37 2002/01/13 11:33:51 fukachan Exp $ # package Mail::Message; @@ -1850,39 +1850,6 @@ sub _evaluate_pmap } -=head2 C<header()> - -alias of C<header_in_body_part()>. - -=head2 C<data( ... )> - -alias of C<body_in_body_part( ... )>. - -=cut - - -# Descriptions: alias of header_in_body_part() -# Arguments: OBJ($self) ... -# Side Effects: none -# Return Value: STR -sub header -{ - my ($self, @args) = @_; - $self->header_in_body_part(@args); -} - - -# Descriptions: alias of data_in_body_part() -# Arguments: OBJ($self) ... -# Side Effects: none -# Return Value: STR -sub data -{ - my ($self, @args) = @_; - $self->data_in_body_part(@args); -} - - =head2 C<header_in_body_part()> return header string in the message content. |
