From: rkinyon Date: Wed, 1 Mar 2006 15:58:42 +0000 (+0000) Subject: Removed debug flag from code and POD X-Git-Tag: 0-99_01~107 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f5be9b0367fa711cd650398351c4699a71c282a8;p=dbsrgits%2FDBM-Deep.git Removed debug flag from code and POD --- diff --git a/lib/DBM/Deep.pm b/lib/DBM/Deep.pm index 9346bb4..ff74226 100644 --- a/lib/DBM/Deep.pm +++ b/lib/DBM/Deep.pm @@ -700,19 +700,18 @@ sub new { my ($args) = @_; my $self = bless { - file => undef, - fh => undef, - file_offset => 0, - end => 0, - autoflush => undef, - locking => undef, - debug => undef, - filter_store_key => undef, + file => undef, + fh => undef, + file_offset => 0, + end => 0, + autoflush => undef, + locking => undef, + locked => 0, + filter_store_key => undef, filter_store_value => undef, - filter_fetch_key => undef, + filter_fetch_key => undef, filter_fetch_value => undef, - autobless => undef, - locked => 0, + autobless => undef, %$args, }, $class; @@ -917,14 +916,6 @@ This is an optional parameter, and defaults to 0 (disabled). See L below. -=item * debug - -Setting I mode will make all errors non-fatal, dump them out to -STDERR, and continue on. This is for debugging purposes only, and probably -not what you want. This is an optional parameter, and defaults to 0 (disabled). - -B: This parameter is considered deprecated and should not be used anymore. - =back =head1 TIE INTERFACE @@ -1495,9 +1486,9 @@ calling the C method. my $root = $db->_root(); This is useful for changing options after the object has already been created, -such as enabling/disabling locking, or debug modes. You can also -store your own temporary user data in this structure (be wary of name -collision), which is then accessible from any child hash or array. +such as enabling/disabling locking. You can also store your own temporary user +data in this structure (be wary of name collision), which is then accessible from +any child hash or array. =head1 CUSTOM DIGEST ALGORITHM