fixup whitespace once again
[gitmo/Role-Tiny.git] / lib / Class / Tiny / Object.pm
index 8243116..4ff2cba 100644 (file)
@@ -13,8 +13,8 @@ sub new {
   $NO_BUILD{$class}
     ? bless({ ref($_[0]) eq 'HASH' ? %{$_[0]} : @_ }, $class)
     : do {
-       my $proto = ref($_[0]) eq 'HASH' ? $_[0] : { @_ };
-       bless({ %$proto }, $class)->BUILDALL($proto);
+        my $proto = ref($_[0]) eq 'HASH' ? $_[0] : { @_ };
+        bless({ %$proto }, $class)->BUILDALL($proto);
       };
 }