Remove our (now broken) dzil GatherDir subclass
[gitmo/Moose.git] / benchmarks / simple_class.pl
index bb8aef1..f0061f1 100644 (file)
@@ -7,24 +7,24 @@ use Benchmark::Forking qw[cmpthese];
 
 =pod
 
-This compares the burden of a basic Moose 
-class to a basic Class::MOP class. 
+This compares the burden of a basic Moose
+class to a basic Class::MOP class.
 
-It is worth noting that the basic Moose 
-class will also create a type constraint 
-as well as export many subs, so this comparison 
+It is worth noting that the basic Moose
+class will also create a type constraint
+as well as export many subs, so this comparison
 is really not fair :)
 
 =cut
 
-cmpthese(5_000, 
-    {    
+cmpthese(5_000,
+    {
         'w/out_moose' => sub {
             eval 'package Bar; use metaclass;';
         },
         'w_moose' => sub {
             eval 'package Baz; use Moose;';
-        },       
+        },
     }
 );