Bumping version to 0.07048_01
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / DBI / ADO / MS_Jet.pm
index 4578c6e..4edd222 100644 (file)
@@ -10,7 +10,7 @@ use mro 'c3';
 use Try::Tiny;
 use namespace::clean;
 
-our $VERSION = '0.07015';
+our $VERSION = '0.07048_01';
 
 =head1 NAME
 
@@ -191,33 +191,6 @@ sub _columns_info_for {
     return $result;
 }
 
-# Trap and ignore OLE warnings from nonexistant comments tables.
-
-sub _table_comment {
-    my $self = shift;
-
-    my $warn_handler = $SIG{__WARN__} || sub { warn @_ };
-
-    local $SIG{__WARN__} = sub {
-        $warn_handler->(@_) unless $_[0] =~ /cannot find the input table/;
-    };
-
-    $self->next::method(@_);
-}
-
-sub _column_comment {
-    my $self = shift;
-
-    my $warn_handler = $SIG{__WARN__} || sub { warn @_ };
-
-    local $SIG{__WARN__} = sub {
-        $warn_handler->(@_) unless $_[0] =~ /cannot find the input table/;
-    };
-
-    $self->next::method(@_);
-}
-
-
 =head1 SEE ALSO
 
 L<DBIx::Class::Schema::Loader::DBI::ODBC::ACCESS>,
@@ -225,9 +198,9 @@ L<DBIx::Class::Schema::Loader::DBI::ADO>,
 L<DBIx::Class::Schema::Loader>, L<DBIx::Class::Schema::Loader::Base>,
 L<DBIx::Class::Schema::Loader::DBI>
 
-=head1 AUTHOR
+=head1 AUTHORS
 
-See L<DBIx::Class::Schema::Loader/AUTHOR> and L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
+See L<DBIx::Class::Schema::Loader/AUTHORS>.
 
 =head1 LICENSE