updated changelog, removed pointly debugging stuff from tests
John Napiorkowski [Fri, 24 Oct 2008 16:30:48 +0000 (16:30 +0000)]
Changes
t/lib/DecoratorLibrary.pm

diff --git a/Changes b/Changes
index 89eec4b..12b29cc 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,5 @@
 
-0.06    Fri Sep  25 12:00:00 EST 2008
+0.06    Fri Oct  24 15:00:00 EST 2008
         - Added support for parameterized types and type unions, tests for all
         that and documentation updates.
         
index 880b456..0aef0cd 100644 (file)
@@ -13,21 +13,6 @@ use MooseX::Types
         Jobs
     )];
 
-## Some questionable messing around
-    sub my_subtype {
-        my ($subtype, $basetype, @rest) = @_;
-        return subtype($subtype, $basetype, shift @rest, shift @rest);
-    }
-    
-    sub my_from {
-        return @_;
-        
-    }
-    sub my_as {
-        return @_;
-    }
-## End
-
 subtype MyArrayRefBase,
     as ArrayRef;