From c704855aef90751fd7f45deca14adb5bca8e11fe Mon Sep 17 00:00:00 2001 From: Glenn Proctor <gp1@sanger.ac.uk> Date: Tue, 18 Sep 2007 15:25:51 +0000 Subject: [PATCH] Change POSIX import to prevent it importing unused functions (e.g. remove which conflicts with the remove method defined in Gene). --- modules/Bio/EnsEMBL/Gene.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Bio/EnsEMBL/Gene.pm b/modules/Bio/EnsEMBL/Gene.pm index 3212a774d7..2bc95db551 100755 --- a/modules/Bio/EnsEMBL/Gene.pm +++ b/modules/Bio/EnsEMBL/Gene.pm @@ -44,7 +44,7 @@ Please post comments/questions to the Ensembl development list use strict; -use POSIX; +use POSIX (); use Bio::EnsEMBL::Feature; use Bio::EnsEMBL::Utils::Argument qw(rearrange); use Bio::EnsEMBL::Utils::Exception qw(throw warning deprecate); -- GitLab