diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-12-18 16:00:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-12-18 16:00:06 +0000 |
commit | fc66dc19f747b66204279dd55f2c3e7f378b695f (patch) | |
tree | 381f20fed155930d9c8f4aba105622a166692668 /perl-install/any.pm | |
parent | cabec45b66bf300e72243d842d7c5267bdbf6b23 (diff) | |
download | drakx-fc66dc19f747b66204279dd55f2c3e7f378b695f.tar drakx-fc66dc19f747b66204279dd55f2c3e7f378b695f.tar.gz drakx-fc66dc19f747b66204279dd55f2c3e7f378b695f.tar.bz2 drakx-fc66dc19f747b66204279dd55f2c3e7f378b695f.tar.xz drakx-fc66dc19f747b66204279dd55f2c3e7f378b695f.zip |
new features including checking unused functions, and checking methods being available
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 2d4f7dad7..92bda10f8 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -596,14 +596,6 @@ sub miscellaneousNetwork { setExportedVarsInCsh("$::prefix/etc/profile.d/proxy.csh", $::o->{miscellaneous}, qw(http_proxy ftp_proxy)); } -sub load_category_no_message { - my ($category, $at_least_one) = @_; - my @l; - @l = modules::load_category($category, undef); - @l = modules::load_category($category, undef, 'force') if !@l && $at_least_one; - @l; -} - sub load_category { my ($in, $category, $auto, $at_least_one) = @_; |