From f599362ee827ae4ee577200ab90b7bc417439dca Mon Sep 17 00:00:00 2001 From: Alessandro Vullo <avullo@ebi.ac.uk> Date: Mon, 5 Aug 2013 08:36:08 +0000 Subject: [PATCH] Removed deprecated methods --- modules/Bio/EnsEMBL/CircularSlice.pm | 43 ---------------------------- 1 file changed, 43 deletions(-) diff --git a/modules/Bio/EnsEMBL/CircularSlice.pm b/modules/Bio/EnsEMBL/CircularSlice.pm index 4596ea7296..0ee1791ef8 100644 --- a/modules/Bio/EnsEMBL/CircularSlice.pm +++ b/modules/Bio/EnsEMBL/CircularSlice.pm @@ -1107,48 +1107,5 @@ sub is_circular { return $self->{'circular'}; } -# sub DEPRECATED METHODS # -############################################################################### - -=head1 DEPRECATED METHODS - -=cut - -=head2 chr_name - - DEPRECATED use seq_region_name() instead - -=cut - -sub chr_name { - deprecate("Use seq_region_name() instead"); - seq_region_name(@_); -} - -=head2 chr_start - - DEPRECATED use start() instead - -=cut - -sub chr_start { - deprecate('Use start() instead'); - start(@_); -} - -=head2 chr_end - - DEPRECATED use end() instead - - Returntype : int - Exceptions : none - Caller : SliceAdaptor, general - -=cut - -sub chr_end { - deprecate('Use end() instead'); - end(@_); -} 1; -- GitLab