From: Jess Robinson Date: Thu, 10 May 2007 21:52:45 +0000 (+0000) Subject: Oops, unbreak stupid txn_begin change X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b06b20f52e603a12e463eba4a0b4200fcd85f3e9;p=dbsrgits%2FDBIx-Class-Historic.git Oops, unbreak stupid txn_begin change --- diff --git a/lib/DBIx/Class/Storage/DBI/SQLite.pm b/lib/DBIx/Class/Storage/DBI/SQLite.pm index a714510..15dcc01 100644 --- a/lib/DBIx/Class/Storage/DBI/SQLite.pm +++ b/lib/DBIx/Class/Storage/DBI/SQLite.pm @@ -45,14 +45,6 @@ sub backup return $backupfile; } -sub txn_begin -{ - my $self = shift; - return if(!$self->{transaction_depth}); - - $self->next::method(@_); -} - 1;