From 34b392c34fab6beb3d94ed944fb90f94fcf38d76 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Fri, 18 Nov 2011 13:14:32 +0100 Subject: Bug 696537: Load DateTime only when datetime_from() is called r/a=mkanat --- Bugzilla/Util.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm index d158be1e1..1f698f80e 100644 --- a/Bugzilla/Util.pm +++ b/Bugzilla/Util.pm @@ -50,8 +50,6 @@ use Bugzilla::RNG qw(irand); use Date::Parse; use Date::Format; -use DateTime; -use DateTime::TimeZone; use Digest; use Email::Address; use List::Util qw(first); @@ -485,6 +483,9 @@ sub datetime_from { delete $args{$arg} if !defined $args{$arg}; } + # This module takes time to load and is only used here, so we + # |require| it here rather than |use| it. + require DateTime; my $dt = new DateTime(\%args); # Now display the date using the given timezone, -- cgit v1.2.3-24-g4f1b