stop using excludes within moose, since it's no longer necessary
[gitmo/Moose.git] / benchmarks / method_modifiers.pl
index 8193298..16f1c5e 100755 (executable)
@@ -17,7 +17,7 @@
     package CMMChild::Before;
     use Class::Method::Modifiers;
     use base 'PlainParent';
-    
+
     before method => sub { "B" };
 }
 {
@@ -32,7 +32,7 @@
     package CMMChild::Around;
     use Class::Method::Modifiers;
     use base 'PlainParent';
-    
+
     around method => sub { shift->() . "A" };
 }
 {
@@ -47,7 +47,7 @@
     package CMMChild::AllThree;
     use Class::Method::Modifiers;
     use base 'PlainParent';
+
     before method => sub { "B" };
     around method => sub { shift->() . "A" };
     after  method => sub { "Z" };