remove obsolete example.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / ResultSetManager.pm
index 46aa406..78461c9 100644 (file)
@@ -13,7 +13,6 @@ classes (EXPERIMENTAL)
 
   # in a table class
   __PACKAGE__->load_components(qw/ResultSetManager Core/); # note order!
-  __PACKAGE__->load_resultset_components(qw/AlwaysRS/);
 
   # will be removed from the table class and inserted into a
   # table-specific resultset class
@@ -68,10 +67,6 @@ sub table {
 
 =head2 load_resultset_components
 
-  # in a table class
-  __PACKAGE__->load_components(qw/ResultSetManager Core/); # note order!
-  __PACKAGE__->load_resultset_components(qw/AlwaysRS/);
-
 C<load_resultset_components> loads components in addition to
 C<DBIx::Class::ResultSet> (or whatever you set as
 C<base_resultset_class>).