Skip to content
Snippets Groups Projects
Commit 2b39b9b7 authored by Daniel Rios's avatar Daniel Rios
Browse files

Modified to return a reference to a list of objects, not a reference to a list of references

parent 7adfae33
No related branches found
No related tags found
No related merge requests found
......@@ -150,7 +150,7 @@ sub AUTOLOAD {
my $ref;
if($adaptor->can($sub)){
$ref = $adaptor->$sub(@args);
push @array_return, $ref;
push @array_return, @{$ref};
}
else{ # end of can
warn("In Merged Adaptor $adaptor cannot call sub $sub");
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment