summaryrefslogtreecommitdiffstats
path: root/perl-install/class_discard.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-06-10 08:01:45 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-06-10 08:01:45 +0000
commita1509a98924fc99200089c266000c8e9c3733fa9 (patch)
tree5bbcfe0c7ad932a47e57213bf5318345fc1854a1 /perl-install/class_discard.pm
parent19d1383b38b59a084509815cf848c5ea9c05deb6 (diff)
downloaddrakx-a1509a98924fc99200089c266000c8e9c3733fa9.tar
drakx-a1509a98924fc99200089c266000c8e9c3733fa9.tar.gz
drakx-a1509a98924fc99200089c266000c8e9c3733fa9.tar.bz2
drakx-a1509a98924fc99200089c266000c8e9c3733fa9.tar.xz
drakx-a1509a98924fc99200089c266000c8e9c3733fa9.zip
class_discard is a bad idea, now unused, so drop it
Diffstat (limited to 'perl-install/class_discard.pm')
-rw-r--r--perl-install/class_discard.pm11
1 files changed, 0 insertions, 11 deletions
diff --git a/perl-install/class_discard.pm b/perl-install/class_discard.pm
deleted file mode 100644
index 6ca677e9d..000000000
--- a/perl-install/class_discard.pm
+++ /dev/null
@@ -1,11 +0,0 @@
-package class_discard; # $Id$
-
-use log;
-
-sub new { bless {}, "class_discard" }
-
-sub AUTOLOAD {
- log::l("class_discard: $AUTOLOAD called at ", caller, ", params ", join(', ', @_));
-}
-
-1;