--- trunk/lib/Frey/Introspect.pm 2008/11/18 12:02:57 407 +++ trunk/lib/Frey/Introspect.pm 2008/11/18 12:55:32 408 @@ -103,25 +103,6 @@ return $out; } -=head2 methods - - my @methods = $o->methods; - -=cut - -sub methods { - my $self = shift; - - my ( $meta, $is_role ) = $self->class_meta; - - my $attr; - $attr->{$_}++ foreach $meta->get_attribute_list; - my @methods = grep { ! defined($attr->{$_}) } $meta->get_method_list; - warn "# methods = ",dump( @methods ) if $self->debug; - - return sort @methods; -} - =head1 OUTPUT GENERATION =head2 markup @@ -181,7 +162,7 @@ $name .= qq|$nr|; } qq|$name| - } $self->methods; + } $self->class_methods( $class ); my @attributes; if ( $meta->get_attribute_list ) {