зеркало из https://github.com/mozilla/gecko-dev.git
Optimisation: move the importing of Template::Context to runtime.
This commit is contained in:
Родитель
1998746fe3
Коммит
ded9adb65d
|
@ -46,6 +46,10 @@ sub init {
|
|||
my($app) = @_;
|
||||
$self->SUPER::init(@_);
|
||||
require Template; import Template; # DEPENDENCY
|
||||
eval {
|
||||
package PLIF::Service::TemplateToolkit::Context;
|
||||
require Template::Context; import Template::Context; # DEPENDENCY
|
||||
};
|
||||
}
|
||||
|
||||
sub expand {
|
||||
|
@ -77,7 +81,6 @@ sub expand {
|
|||
package PLIF::Service::TemplateToolkit::Context;
|
||||
use strict;
|
||||
use vars qw(@ISA);
|
||||
use Template::Context;
|
||||
@ISA = qw(Template::Context);
|
||||
1;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче