more cleanups
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Counter / Writer.pm
index 2df502c..e01af6a 100644 (file)
@@ -17,8 +17,9 @@ sub _constraint_must_be_checked {
     my $attr = $self->associated_attribute;
 
     return $attr->has_type_constraint
-        && ( $attr->type_constraint->name =~ /^(?:Num|Int)$/
-        || ( $attr->should_coerce && $attr->type_constraint->has_coercion ) );
+        && ($attr->type_constraint->name =~ /^(?:Num|Int)$/
+         || ($attr->should_coerce && $attr->type_constraint->has_coercion)
+           );
 }
 
 no Moose::Role;