Re-write Roadmap to not be lies, change warns on component resolution to mention...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Request.pm
index f228099..fc13ca9 100644 (file)
@@ -64,7 +64,6 @@ before body_parameters => sub {
 has uploads => (
   is => 'rw',
   required => 1,
-  lazy => 1,
   default => sub { {} },
 );
 
@@ -97,7 +96,7 @@ has base => (
 );
 
 has _body => (
-  is => 'rw',
+  is => 'rw', clearer => '_clear_body', predicate => '_has_body',
 );
 # Eugh, ugly. Should just be able to rename accessor methods to 'body'
 #             and provide a custom reader..