From 83a4709e2f25f14b957e3c632c3258cfb1515b22 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20Kusalananda=20K=C3=A4h=C3=A4ri?=
 <ak4@sanger.ac.uk>
Date: Thu, 20 Oct 2011 12:28:24 +0000
Subject: [PATCH] No apparent need for STRAIGHT JOIN.

---
 modules/Bio/EnsEMBL/DBSQL/UnmappedObjectAdaptor.pm | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/modules/Bio/EnsEMBL/DBSQL/UnmappedObjectAdaptor.pm b/modules/Bio/EnsEMBL/DBSQL/UnmappedObjectAdaptor.pm
index 6ebdfb67ad..bb61c4401f 100644
--- a/modules/Bio/EnsEMBL/DBSQL/UnmappedObjectAdaptor.pm
+++ b/modules/Bio/EnsEMBL/DBSQL/UnmappedObjectAdaptor.pm
@@ -127,13 +127,10 @@ sub _columns {
 	    ur.summary_description ur.full_description);
 }
 
-
-sub _straight_join {
-  return( [ 'unmapped_object', "uo.unmapped_reason_id = ur.unmapped_reason_id" ]);
-}
-
 sub _left_join {
-  return( [ 'unmapped_object', "uo.unmapped_reason_id = ur.unmapped_reason_id" ]);
+  return ( [
+      'unmapped_object', "uo.unmapped_reason_id = ur.unmapped_reason_id"
+    ] );
 }
 
 =head2 list_dbIDs
-- 
GitLab