The complexity of caching pkg_gen is in fact making things slower
[p5sagit/Class-Accessor-Grouped.git] / t / lib / BaseInheritedGroups.pm
index 23f3ff8..14f0d62 100644 (file)
@@ -6,7 +6,7 @@ use base 'Class::Accessor::Grouped';
 __PACKAGE__->mk_group_accessors('inherited', 'basefield', 'undefined');
 
 sub new {
-    return bless {}, shift;
+  return bless {}, shift;
 };
 
 1;