Removed deprecated stuff from SQL.pm (cheers abraxxa)
Matt S Trout [Thu, 4 Aug 2005 14:50:48 +0000 (14:50 +0000)]
lib/DBIx/Class/SQL.pm

index 65beae4..f176521 100644 (file)
@@ -45,16 +45,6 @@ sub create_sql {
 
 *_get_sql = \&create_sql;
 
-sub _sql_to_sth {
-  my ($class, $sql) = @_;
-  return $class->_get_dbh->prepare($sql);
-}
-
-sub _get_sth {
-  my $class = shift;
-  return $class->_sql_to_sth($class->_get_sql(@_));
-}
-
 1;
 
 =head1 AUTHORS