diff options
| author | fukachan <fukachan> | 2004-04-23 04:10:26 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2004-04-23 04:10:26 +0000 |
| commit | 002f83d01f18cb4afe8bdc90fb3dd11f91b5ea7d (patch) | |
| tree | c5c58fefc88df698d00d8573d92b1992347a37e4 /fml/lib/FML/Process | |
| parent | 86ab3fddc3b14ff7c0f85ad82c0f57c72f12af18 (diff) | |
| download | fml8-002f83d01f18cb4afe8bdc90fb3dd11f91b5ea7d.tar.gz fml8-002f83d01f18cb4afe8bdc90fb3dd11f91b5ea7d.tar.bz2 fml8-002f83d01f18cb4afe8bdc90fb3dd11f91b5ea7d.zip | |
remove "use FML::Log;".
Diffstat (limited to 'fml/lib/FML/Process')
| -rw-r--r-- | fml/lib/FML/Process/Addr.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Alias.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/CGI/Kernel.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Command.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/ConfViewer.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Configure.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Digest.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Distribute.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/DocViewer.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Error.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Fake.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/HTMLify.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Scheduler.pm | 3 | ||||
| -rw-r--r-- | fml/lib/FML/Process/Utils.pm | 3 |
14 files changed, 14 insertions, 28 deletions
diff --git a/fml/lib/FML/Process/Addr.pm b/fml/lib/FML/Process/Addr.pm index 5e0d67e4..680a3af2 100644 --- a/fml/lib/FML/Process/Addr.pm +++ b/fml/lib/FML/Process/Addr.pm @@ -3,7 +3,7 @@ # Copyright (C) 2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Addr.pm,v 1.16 2004/01/02 16:08:38 fukachan Exp $ +# $FML: Addr.pm,v 1.17 2004/01/31 04:06:31 fukachan Exp $ # package FML::Process::Addr; @@ -12,7 +12,6 @@ use strict; use Carp; use vars qw($debug @ISA @EXPORT @EXPORT_OK); -use FML::Log qw(Log LogWarn LogError); use FML::Config; use FML::Process::Kernel; @ISA = qw(FML::Process::Kernel); diff --git a/fml/lib/FML/Process/Alias.pm b/fml/lib/FML/Process/Alias.pm index b75ed2fd..e8638f3b 100644 --- a/fml/lib/FML/Process/Alias.pm +++ b/fml/lib/FML/Process/Alias.pm @@ -3,7 +3,7 @@ # Copyright (C) 2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Alias.pm,v 1.17 2004/01/02 16:08:39 fukachan Exp $ +# $FML: Alias.pm,v 1.18 2004/01/31 04:06:31 fukachan Exp $ # package FML::Process::Alias; @@ -12,7 +12,6 @@ use vars qw($debug @ISA @EXPORT @EXPORT_OK); use strict; use Carp; -use FML::Log qw(Log LogWarn LogError); use FML::Config; use FML::Process::Kernel; @ISA = qw(FML::Process::Kernel); diff --git a/fml/lib/FML/Process/CGI/Kernel.pm b/fml/lib/FML/Process/CGI/Kernel.pm index 9d6d8adf..4bb9dc00 100644 --- a/fml/lib/FML/Process/CGI/Kernel.pm +++ b/fml/lib/FML/Process/CGI/Kernel.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: Kernel.pm,v 1.78 2004/03/31 05:28:18 fukachan Exp $ +# $FML: Kernel.pm,v 1.79 2004/04/18 05:59:43 fukachan Exp $ # package FML::Process::CGI::Kernel; @@ -16,7 +16,6 @@ use File::Spec; # load standard CGI routines use CGI qw/:standard/; -use FML::Log qw(Log LogWarn LogError); use FML::Process::Kernel; use FML::Process::CGI::Utils; @ISA = qw(FML::Process::CGI::Utils FML::Process::Kernel); diff --git a/fml/lib/FML/Process/Command.pm b/fml/lib/FML/Process/Command.pm index d9dbda6e..04d2f49e 100644 --- a/fml/lib/FML/Process/Command.pm +++ b/fml/lib/FML/Process/Command.pm @@ -3,7 +3,7 @@ # Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Command.pm,v 1.102 2004/03/14 06:47:38 fukachan Exp $ +# $FML: Command.pm,v 1.103 2004/04/22 12:43:19 fukachan Exp $ # package FML::Process::Command; @@ -11,7 +11,6 @@ package FML::Process::Command; use vars qw($debug @ISA @EXPORT @EXPORT_OK); use strict; use Carp; -use FML::Log qw(Log LogWarn LogError); use FML::Config; use FML::Process::Kernel; @ISA = qw(FML::Process::Kernel); diff --git a/fml/lib/FML/Process/ConfViewer.pm b/fml/lib/FML/Process/ConfViewer.pm index 3e8c96a6..19357a63 100644 --- a/fml/lib/FML/Process/ConfViewer.pm +++ b/fml/lib/FML/Process/ConfViewer.pm @@ -3,14 +3,13 @@ # Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: ConfViewer.pm,v 1.28 2004/01/02 16:08:39 fukachan Exp $ +# $FML: ConfViewer.pm,v 1.29 2004/01/31 04:06:32 fukachan Exp $ # package FML::Process::ConfViewer; use strict; use Carp; use vars qw($debug @ISA @EXPORT @EXPORT_OK); -use FML::Log qw(Log LogWarn LogError); use FML::Process::Kernel; @ISA = qw(FML::Process::Kernel); diff --git a/fml/lib/FML/Process/Configure.pm b/fml/lib/FML/Process/Configure.pm index 9c87aafb..4a465ec0 100644 --- a/fml/lib/FML/Process/Configure.pm +++ b/fml/lib/FML/Process/Configure.pm @@ -3,7 +3,7 @@ # Copyright (C) 2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Configure.pm,v 1.63 2004/01/31 04:06:32 fukachan Exp $ +# $FML: Configure.pm,v 1.64 2004/03/13 11:46:32 fukachan Exp $ # package FML::Process::Configure; @@ -12,7 +12,6 @@ use vars qw($debug @ISA @EXPORT @EXPORT_OK); use strict; use Carp; -use FML::Log qw(Log LogWarn LogError); use FML::Config; use FML::Process::Kernel; @ISA = qw(FML::Process::Kernel); diff --git a/fml/lib/FML/Process/Digest.pm b/fml/lib/FML/Process/Digest.pm index a6b40553..b9356246 100644 --- a/fml/lib/FML/Process/Digest.pm +++ b/fml/lib/FML/Process/Digest.pm @@ -3,7 +3,7 @@ # Copyright (C) 2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Digest.pm,v 1.17 2004/03/12 11:45:50 fukachan Exp $ +# $FML: Digest.pm,v 1.18 2004/03/13 06:03:24 fukachan Exp $ # package FML::Process::Digest; @@ -12,7 +12,6 @@ use vars qw($debug @ISA @EXPORT @EXPORT_OK); use strict; use Carp; -use FML::Log qw(Log LogWarn LogError); use FML::Config; use FML::Process::Kernel; @ISA = qw(FML::Process::Kernel); diff --git a/fml/lib/FML/Process/Distribute.pm b/fml/lib/FML/Process/Distribute.pm index a756acd8..c7b7e0d3 100644 --- a/fml/lib/FML/Process/Distribute.pm +++ b/fml/lib/FML/Process/Distribute.pm @@ -3,7 +3,7 @@ # Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Distribute.pm,v 1.141 2004/03/28 10:33:35 fukachan Exp $ +# $FML: Distribute.pm,v 1.142 2004/03/31 12:53:51 fukachan Exp $ # package FML::Process::Distribute; @@ -12,7 +12,6 @@ use vars qw($debug @ISA @EXPORT @EXPORT_OK); use strict; use Carp; -use FML::Log qw(Log LogWarn LogError); use FML::Config; use FML::Process::Kernel; @ISA = qw(FML::Process::Kernel); diff --git a/fml/lib/FML/Process/DocViewer.pm b/fml/lib/FML/Process/DocViewer.pm index 18e67830..efa90eab 100644 --- a/fml/lib/FML/Process/DocViewer.pm +++ b/fml/lib/FML/Process/DocViewer.pm @@ -3,7 +3,7 @@ # Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: DocViewer.pm,v 1.30 2004/01/02 16:08:39 fukachan Exp $ +# $FML: DocViewer.pm,v 1.31 2004/01/31 04:06:32 fukachan Exp $ # package FML::Process::DocViewer; @@ -12,7 +12,6 @@ use vars qw($debug @ISA @EXPORT @EXPORT_OK); use strict; use Carp; -use FML::Log qw(Log LogWarn LogError); use FML::Config; use FML::Process::Kernel; @ISA = qw(FML::Process::Kernel); diff --git a/fml/lib/FML/Process/Error.pm b/fml/lib/FML/Process/Error.pm index 2693c937..f4e2c471 100644 --- a/fml/lib/FML/Process/Error.pm +++ b/fml/lib/FML/Process/Error.pm @@ -3,7 +3,7 @@ # Copyright (C) 2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Error.pm,v 1.42 2004/03/13 06:03:24 fukachan Exp $ +# $FML: Error.pm,v 1.43 2004/04/02 11:56:26 fukachan Exp $ # package FML::Process::Error; @@ -11,7 +11,6 @@ package FML::Process::Error; use vars qw($debug @ISA @EXPORT @EXPORT_OK); use strict; use Carp; -use FML::Log qw(Log LogWarn LogError); use FML::Config; use FML::Process::Kernel; @ISA = qw(FML::Process::Kernel); diff --git a/fml/lib/FML/Process/Fake.pm b/fml/lib/FML/Process/Fake.pm index dc51c164..b72e6939 100644 --- a/fml/lib/FML/Process/Fake.pm +++ b/fml/lib/FML/Process/Fake.pm @@ -3,7 +3,7 @@ # Copyright (C) 2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Fake.pm,v 1.8 2004/01/31 04:06:33 fukachan Exp $ +# $FML: Fake.pm,v 1.9 2004/02/15 04:38:34 fukachan Exp $ # package FML::Process::Fake; @@ -12,7 +12,6 @@ use strict; use Carp; use vars qw($debug @ISA @EXPORT @EXPORT_OK); -use FML::Log qw(Log LogWarn LogError); use FML::Config; use FML::Process::Kernel; @ISA = qw(FML::Process::Kernel); diff --git a/fml/lib/FML/Process/HTMLify.pm b/fml/lib/FML/Process/HTMLify.pm index d8408738..bf357789 100644 --- a/fml/lib/FML/Process/HTMLify.pm +++ b/fml/lib/FML/Process/HTMLify.pm @@ -3,7 +3,7 @@ # Copyright (C) 2001,2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: HTMLify.pm,v 1.34 2004/01/24 15:37:03 fukachan Exp $ +# $FML: HTMLify.pm,v 1.35 2004/01/31 04:06:33 fukachan Exp $ # package FML::Process::HTMLify; @@ -13,7 +13,6 @@ use strict; use Carp; use FML::Process::Kernel; -use FML::Log qw(Log LogWarn LogError); use FML::Config; my $debug = 0; diff --git a/fml/lib/FML/Process/Scheduler.pm b/fml/lib/FML/Process/Scheduler.pm index fbf7cea1..b3c04eb4 100644 --- a/fml/lib/FML/Process/Scheduler.pm +++ b/fml/lib/FML/Process/Scheduler.pm @@ -3,7 +3,7 @@ # Copyright (C) 2002,2003,2004 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Scheduler.pm,v 1.23 2003/04/04 05:05:03 fukachan Exp $ +# $FML: Scheduler.pm,v 1.24 2004/01/02 16:08:39 fukachan Exp $ # package FML::Process::Scheduler; @@ -11,7 +11,6 @@ package FML::Process::Scheduler; use vars qw($debug @ISA @EXPORT @EXPORT_OK); use strict; use Carp; -use FML::Log qw(Log LogWarn LogError); use FML::Config; =head1 NAME diff --git a/fml/lib/FML/Process/Utils.pm b/fml/lib/FML/Process/Utils.pm index dac19149..36af6434 100644 --- a/fml/lib/FML/Process/Utils.pm +++ b/fml/lib/FML/Process/Utils.pm @@ -4,14 +4,13 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: Utils.pm,v 1.113 2004/04/17 13:24:35 fukachan Exp $ +# $FML: Utils.pm,v 1.114 2004/04/21 10:09:52 fukachan Exp $ # package FML::Process::Utils; use strict; use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD); use Carp; -use FML::Log qw(Log LogWarn LogError); use File::Spec; use File::stat; |
