projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
b64e200
)
The default maxdepth of 'dump' method is now 3, instead of 2.
gfx [Mon, 8 Feb 2010 04:40:53 +0000 (13:40 +0900)]
lib/Mouse/Util.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Mouse/Util.pm
b/lib/Mouse/Util.pm
index
4908863
..
b7ab693
100644
(file)
--- a/
lib/Mouse/Util.pm
+++ b/
lib/Mouse/Util.pm
@@
-344,7
+344,7
@@
sub dump :method {
require 'Data/Dumper.pm'; # we don't want to create its namespace
my $dd = Data::Dumper->new([$self]);
- $dd->Maxdepth(defined($maxdepth) ? $maxdepth : 2);
+ $dd->Maxdepth(defined($maxdepth) ? $maxdepth : 3);
$dd->Indent(1);
return $dd->Dump();
}