X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FSQLite.pm;fp=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FSQLite.pm;h=07ddc6165497e918f84bcd3a0c17a5d77c3cd4dd;hb=5784b2b9d26d61b0673513413597fc5928e480a5;hp=c723f5e7785802dde343c5346c3b399a59696a51;hpb=a6fd0a48650a165b84866c1d14b65d35f25ef416;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm b/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm index c723f5e..07ddc61 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm @@ -230,7 +230,7 @@ sub _table_uniq_info { } sub _tables_list { - my ($self, $opts) = @_; + my ($self) = @_; my $sth = $self->dbh->prepare("SELECT * FROM sqlite_master"); $sth->execute; @@ -248,7 +248,7 @@ sub _tables_list { ); } $sth->finish; - return $self->_filter_tables(\@tables, $opts); + return $self->_filter_tables(\@tables); } sub _table_info_matches {