summaryrefslogtreecommitdiff
path: root/fml
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-01-13 11:37:10 +0000
committerfukachan <fukachan>2002-01-13 11:37:10 +0000
commit2d487005f288e25bac20a0e2574a7f540cd37d80 (patch)
tree30f176c28fa91712786b664623ca5976f1504523 /fml
parent562b5035103af9970d6ac81f44bc843d1a69d8c1 (diff)
downloadfml8-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.pm35
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.