X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FADO%2FMS_Jet.pm;fp=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FADO%2FMS_Jet.pm;h=5dd48f2c291333624a1f03196b5385f0a7d9a7f8;hb=116431d67fe62da10229791aef6cc0d5a87802d9;hp=c957710b9b66e6f2a6bcfc78297d43f67ec083ca;hpb=18eb280f9b71785a12c105299f813358faa47143;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/ADO/MS_Jet.pm b/lib/DBIx/Class/Schema/Loader/DBI/ADO/MS_Jet.pm index c957710..5dd48f2 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/ADO/MS_Jet.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/ADO/MS_Jet.pm @@ -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,