projects
/
gitmo/MooseX-AutoDoc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
23ad931
)
make attribute bare to silence warning
Justin Hunter [Thu, 27 Aug 2009 05:16:14 +0000 (22:16 -0700)]
t/lib/AutoDocTest7.pm
patch
|
blob
|
blame
|
history
diff --git
a/t/lib/AutoDocTest7.pm
b/t/lib/AutoDocTest7.pm
index
d2807e0
..
a77ed1e
100644
(file)
--- a/
t/lib/AutoDocTest7.pm
+++ b/
t/lib/AutoDocTest7.pm
@@
-3,6
+3,6
@@
package AutoDocTest7;
use Moose;
use AutoDocTestTypes qw( TestType );
-has typed_attr => (isa => TestType);
+has typed_attr => (isa => TestType, is => 'bare');
1;