make Data::Perl::Stream::Array immutable
Matt S Trout [Mon, 18 Jan 2010 19:28:07 +0000 (19:28 +0000)]
lib/Data/Perl/Stream/Array.pm

index f9fcea2..7c0cd09 100644 (file)
@@ -15,4 +15,6 @@ method next {
   return shift @$ary;
 }
 
+__PACKAGE__->meta->make_immutable;
+
 1;