summaryrefslogtreecommitdiff
path: root/lib/Multi/IRC.pm
diff options
context:
space:
mode:
authoryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-05-01 08:44:25 +0000
committeryorhel <yorhel@1fe2e327-d9db-4752-bcf7-ef0cb4a1748b>2008-05-01 08:44:25 +0000
commit59f6e2061ab2c19a626813e99b59d416f730180c (patch)
treedc080dd22ce4578cb9b9b893cf74ea9ccb53bba1 /lib/Multi/IRC.pm
parent2e533bd16346ec74216415c01a57c7276d608cf8 (diff)
Another batch of changes... see the ChangeLog!
git-svn-id: svn://vndb.org/vndb@10 1fe2e327-d9db-4752-bcf7-ef0cb4a1748b
Diffstat (limited to 'lib/Multi/IRC.pm')
-rw-r--r--lib/Multi/IRC.pm20
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/Multi/IRC.pm b/lib/Multi/IRC.pm
index 4643a8fb..b8f6d44b 100644
--- a/lib/Multi/IRC.pm
+++ b/lib/Multi/IRC.pm
@@ -157,23 +157,3 @@ sub shutdown {
1;
-
-__END__
-
-# debug
-sub _default {
- my($event,$args) = @_[ ARG0 .. $#_ ];
- my $arg_number = 0;
- for (@$args) {
- print " ARG$arg_number = ";
- if ( ref($_) eq 'ARRAY' ) {
- print "$_ = [", join ( ", ", @$_ ), "]\n";
- }
- else {
- print "'".($_||'')."'\n";
- }
- $arg_number++;
- }
- return 0;
-}
-