minor clean up
Rafael Kitover [Sat, 23 May 2009 21:04:01 +0000 (21:04 +0000)]
lib/DBIx/Class/Storage/DBI/Sybase.pm

index 0c18d6b..ec4fcf7 100644 (file)
@@ -20,8 +20,8 @@ sub _rebless {
 }
 
 sub _dbh_last_insert_id {
-    my $self = shift;
-    ($self->_dbh->selectrow_array('select @@identity'))[0];
+    my ($self, $dbh, $source, $col) = @_;
+    return ($dbh->selectrow_array('select @@identity'))[0];
 }
 
 1;