From 7ede689cc259dac2d76921b67c49af516e44914d Mon Sep 17 00:00:00 2001 From: Glenn Proctor <gp1@sanger.ac.uk> Date: Tue, 20 Mar 2007 11:53:18 +0000 Subject: [PATCH] Removed debug. --- modules/Bio/EnsEMBL/DBSQL/DBEntryAdaptor.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/Bio/EnsEMBL/DBSQL/DBEntryAdaptor.pm b/modules/Bio/EnsEMBL/DBSQL/DBEntryAdaptor.pm index a3ffdf5440..2ae8b8c980 100644 --- a/modules/Bio/EnsEMBL/DBSQL/DBEntryAdaptor.pm +++ b/modules/Bio/EnsEMBL/DBSQL/DBEntryAdaptor.pm @@ -548,7 +548,6 @@ sub fetch_all_by_Transcript { sub fetch_all_by_Translation { my ( $self, $trans, $ex_db_reg ) = @_; -print "in f a b t\n"; if(!ref($trans) || !$trans->isa('Bio::EnsEMBL::Translation')) { throw('Bio::EnsEMBL::Translation argument expected.'); @@ -557,7 +556,7 @@ print "in f a b t\n"; warning( "Cannot fetch_all_by_Translation without a dbID" ); return []; } -print "out of f a b t\n"; + return $self->_fetch_by_object_type( $trans->dbID(), 'Translation', $ex_db_reg ); } -- GitLab