From e5272acbf785a5fb49c0ee5a79ff8da30c37eca5 Mon Sep 17 00:00:00 2001
From: Stephen Searle <searle@sanger.ac.uk>
Date: Fri, 17 Jun 2005 17:02:38 +0000
Subject: [PATCH] Removed return statement

---
 modules/Bio/EnsEMBL/DBSQL/TranscriptSupportingFeatureAdaptor.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/Bio/EnsEMBL/DBSQL/TranscriptSupportingFeatureAdaptor.pm b/modules/Bio/EnsEMBL/DBSQL/TranscriptSupportingFeatureAdaptor.pm
index 2c29fe1b5d..2f6cd1c4b8 100644
--- a/modules/Bio/EnsEMBL/DBSQL/TranscriptSupportingFeatureAdaptor.pm
+++ b/modules/Bio/EnsEMBL/DBSQL/TranscriptSupportingFeatureAdaptor.pm
@@ -61,11 +61,11 @@ sub fetch_all_by_Transcript {
     return [];
   }
 
-  return $out;
   my $sth = $self->prepare("SELECT tsf.feature_type, tsf.feature_id
                             FROM   transcript_supporting_feature tsf
                             WHERE  transcript_id = ?");
 
+
   $sth->execute($transcript->dbID());
 
   my $prot_adp = $self->db->get_ProteinAlignFeatureAdaptor;
-- 
GitLab