From b692e771996d1f46f9d3a534e52932f213f051ec Mon Sep 17 00:00:00 2001 From: Graham McVicker <mcvicker@sanger.ac.uk> Date: Tue, 23 Mar 2004 09:32:48 +0000 Subject: [PATCH] fixed incorrect arg to SUPER::new --- modules/Bio/EnsEMBL/Intron.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Bio/EnsEMBL/Intron.pm b/modules/Bio/EnsEMBL/Intron.pm index ad74848349..71424598ee 100644 --- a/modules/Bio/EnsEMBL/Intron.pm +++ b/modules/Bio/EnsEMBL/Intron.pm @@ -49,7 +49,7 @@ sub new { $class = ref $class || $class; - my $self = $class->SUPER::new( $class ); + my $self = $class->SUPER::new(); if($e1->strand == -1){ $self->{'end'} = ($e1->start)-1; -- GitLab