summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Command/User/remove.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2006-03-04 13:48:28 +0000
committerfukachan <fukachan>2006-03-04 13:48:28 +0000
commit24acfd76bcca6a742dd3d12c07af8e2ae193f430 (patch)
tree7c31c02b071e5702427542214385344aa483f3db /fml/lib/FML/Command/User/remove.pm
parent80a851d319914b556899769706825eb9a9f5a27b (diff)
downloadfml8-24acfd76bcca6a742dd3d12c07af8e2ae193f430.tar.gz
fml8-24acfd76bcca6a742dd3d12c07af8e2ae193f430.tar.bz2
fml8-24acfd76bcca6a742dd3d12c07af8e2ae193f430.zip
$command_args -> $command_context (OBJ), method style
Diffstat (limited to 'fml/lib/FML/Command/User/remove.pm')
-rw-r--r--fml/lib/FML/Command/User/remove.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/fml/lib/FML/Command/User/remove.pm b/fml/lib/FML/Command/User/remove.pm
index 8a23384f..1d5806c4 100644
--- a/fml/lib/FML/Command/User/remove.pm
+++ b/fml/lib/FML/Command/User/remove.pm
@@ -1,10 +1,10 @@
#-*- perl -*-
#
-# Copyright (C) 2001,2002,2003 Ken'ichi Fukamachi
+# Copyright (C) 2001,2002,2003,2005,2006 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: remove.pm,v 1.12 2003/12/31 03:49:18 fukachan Exp $
+# $FML: remove.pm,v 1.13 2003/12/31 04:08:44 fukachan Exp $
#
package FML::Command::User::remove;
@@ -18,13 +18,13 @@ use FML::Command::User::unsubscribe;
# Descriptions: unsubscribe request, forwarded to "unsubscribe" module.
-# Arguments: OBJ($self) OBJ($curproc) HASH_REF($command_args)
+# Arguments: OBJ($self) OBJ($curproc) OBJ($command_context)
# Side Effects: forward request to unsubscribe module
# Return Value: none
sub process
{
- my ($self, $curproc, $command_args) = @_;
- $self->SUPER::process($curproc, $command_args);
+ my ($self, $curproc, $command_context) = @_;
+ $self->SUPER::process($curproc, $command_context);
}
@@ -51,7 +51,7 @@ Ken'ichi Fukamachi
=head1 COPYRIGHT
-Copyright (C) 2001,2002,2003 Ken'ichi Fukamachi
+Copyright (C) 2001,2002,2003,2005,2006 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.