diff options
author | Artur Bergman <sky@nanisky.com> | 2001-10-26 11:59:09 +0000 |
---|---|---|
committer | Artur Bergman <sky@nanisky.com> | 2001-10-26 11:59:09 +0000 |
commit | 0d73bec8afda581f611a829e9b78bcf09d06a888 (patch) | |
tree | a8dbc2c1076ae8635995502c82f3c9b413cc9726 /ext | |
parent | 938785a29d4f7c59a64a93320a37f15bb52259b4 (diff) | |
download | perl-0d73bec8afda581f611a829e9b78bcf09d06a888.tar.gz |
Don't display debug data.
p4raw-id: //depot/perl@12674
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/threads/threads.pm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/threads/threads.pm b/ext/threads/threads.pm index ef0f412f65..b708de4461 100755 --- a/ext/threads/threads.pm +++ b/ext/threads/threads.pm @@ -13,8 +13,6 @@ use overload require Exporter; require DynaLoader; -use Devel::Peek; - our @ISA = qw(Exporter DynaLoader); our %EXPORT_TAGS = ( all => [qw()]); @@ -28,7 +26,6 @@ our $VERSION = '0.05'; sub new { my $class = shift; - print (Dump($_[0])); return $class->create(@_); } |