Bug 15968: Unnecessary loop in C4::Templates
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 3 Mar 2016 11:35:14 +0000 (11:35 +0000)
committerJulian Maurice <julian.maurice@biblibre.com>
Mon, 14 Mar 2016 09:24:17 +0000 (10:24 +0100)
commit1543db81c7e6ba0c8501cf19452ba3d08f842680
tree7d76d3e09f1bf14ca0815a1755c3ae036724d523
parentce5a03424e30d1dd4a787701798db69049e7d8be
Bug 15968: Unnecessary loop in C4::Templates

From C4::Templates::output

     # add variables set via param to $vars for processing
     for my $k ( keys %{ $self->{VARS} } ) {
         $vars->{$k} = $self->{VARS}->{$k};
     }

This loop is not necessary, we could do the same with

     $vars = { %$vars, %{ $self->{VARS} } };

After a quick benchmark, it gains 100 microseconds when we pass 170 vars
to the template.

Test plan:
Do some clicks on the interface, everything should be ok.

Signed-off-by: Frédéric Demians <f.demians@tamil.fr>
  Perl idiosyncratic way of merging hash, clearer, if not quicker (not
  verified)

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
(cherry picked from commit 9be221b14eee137f4143e4a2243eadfb03fcfbbc)
Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>
C4/Templates.pm