[Bps-public-commit] r13883 - in Lorzy/trunk: .

sartak at bestpractical.com sartak at bestpractical.com
Tue Jul 8 16:16:28 EDT 2008


Author: sartak
Date: Tue Jul  8 16:16:19 2008
New Revision: 13883

Modified:
   Lorzy/trunk/   (props changed)
   Lorzy/trunk/lib/Lorzy/FunctionArgument.pm

Log:
 r63873 at onn:  sartak | 2008-07-08 16:16:13 -0400
 We practically never need to explicitly have "Undef" in our type constraint, since all attributes start off uninitialized anyway


Modified: Lorzy/trunk/lib/Lorzy/FunctionArgument.pm
==============================================================================
--- Lorzy/trunk/lib/Lorzy/FunctionArgument.pm	(original)
+++ Lorzy/trunk/lib/Lorzy/FunctionArgument.pm	Tue Jul  8 16:16:19 2008
@@ -3,7 +3,7 @@
 
 has name => (
     is  => 'rw',
-    isa => 'Str'
+    isa => 'Str',
 );
 
 has type => (
@@ -13,7 +13,7 @@
 
 has description => (
     is  => 'rw',
-    isa => 'Str | Undef',
+    isa => 'Str',
 );
 
 __PACKAGE__->meta->make_immutable;



More information about the Bps-public-commit mailing list