Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
1861c5c4
Commit
1861c5c4
authored
Feb 06, 2014
by
Leo Gordon
Browse files
removed rearrange() from DBConnection
parent
b98e2aca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
modules/Bio/EnsEMBL/Hive/DBSQL/DBConnection.pm
modules/Bio/EnsEMBL/Hive/DBSQL/DBConnection.pm
+2
-4
No files found.
modules/Bio/EnsEMBL/Hive/DBSQL/DBConnection.pm
View file @
1861c5c4
...
...
@@ -37,7 +37,6 @@ package Bio::EnsEMBL::Hive::DBSQL::DBConnection;
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::Utils::
Argument
('
rearrange
');
use
Bio::EnsEMBL::Hive::Utils::
URL
;
use
base
('
Bio::EnsEMBL::DBSQL::DBConnection
');
...
...
@@ -45,10 +44,9 @@ use base ('Bio::EnsEMBL::DBSQL::DBConnection');
sub
new
{
my
$class
=
shift
;
my
%flags
=
@_
;
my
(
$url
)
=
rearrange
(
['
URL
'],
@
_
);
if
(
$url
)
{
if
(
my
$url
=
$flags
{'
-url
'})
{
if
(
my
$parsed_url
=
Bio::EnsEMBL::Hive::Utils::URL::
parse
(
$url
))
{
return
$class
->
SUPER::
new
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment