simplify has_method check
Yuval Kogman [Fri, 15 Aug 2008 18:55:52 +0000 (18:55 +0000)]
lib/Class/MOP/Class.pm

index d409156..1f86040 100644 (file)
@@ -720,8 +720,7 @@ sub has_method {
     (defined $method_name && $method_name)
         || confess "You must define a method name";
 
-    return 0 unless exists $self->get_method_map->{$method_name};
-    return 1;
+    exists $self->get_method_map->{$method_name};
 }
 
 sub get_method {