summaryrefslogtreecommitdiff
path: root/lib/Multi/IRC.pm
diff options
context:
space:
mode:
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;
-}
-