Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
4e7bf429
Commit
4e7bf429
authored
May 23, 2014
by
Leo Gordon
Browse files
cosmetic: removed a redefinition of variables and put warnings in
parent
b2e638fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/Bio/EnsEMBL/Hive/DBSQL/BaseAdaptor.pm
modules/Bio/EnsEMBL/Hive/DBSQL/BaseAdaptor.pm
+1
-1
No files found.
modules/Bio/EnsEMBL/Hive/DBSQL/BaseAdaptor.pm
View file @
4e7bf429
...
...
@@ -36,6 +36,7 @@
package
Bio::EnsEMBL::Hive::DBSQL::
BaseAdaptor
;
use
strict
;
use
warnings
;
no
strict
'
refs
';
# needed to allow AUTOLOAD create new methods
use
DBI
1.6
;
# the 1.6 functionality is important for detecting autoincrement fields and other magic.
...
...
@@ -488,7 +489,6 @@ sub store {
my
$stored_this_time
=
0
;
foreach
my
$object
(
@$objects
)
{
my
(
$columns_being_stored
,
$column_key
)
=
(
ref
(
$object
)
eq
'
HASH
')
?
$self
->
keys_to_columns
(
$object
)
:
(
$all_storable_columns
,
'
*all*
');
my
(
$columns_being_stored
,
$column_key
)
=
$self
->
keys_to_columns
(
$object
);
# warn "COLUMN_KEY='$column_key'\n";
...
...
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