summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Status.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-09-01 23:43:00 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-09-01 23:43:00 +0200
commit1001cbba7b16ccc4611bbee0474264bb551d1ea5 (patch)
tree9596c12f8ed8730e864acdfc10ddd08b0796f8ef /Bugzilla/Status.pm
parent88157fb0e84c374031020e0bd4ca82bb450bb146 (diff)
downloadbugzilla-1001cbba7b16ccc4611bbee0474264bb551d1ea5.tar.gz
bugzilla-1001cbba7b16ccc4611bbee0474264bb551d1ea5.tar.xz
Bug 787529: Use |use 5.10.1| everywhere
r=wicked a=LpSolit
Diffstat (limited to 'Bugzilla/Status.pm')
-rw-r--r--Bugzilla/Status.pm8
1 files changed, 5 insertions, 3 deletions
diff --git a/Bugzilla/Status.pm b/Bugzilla/Status.pm
index 2821f7c6e..33277fed7 100644
--- a/Bugzilla/Status.pm
+++ b/Bugzilla/Status.pm
@@ -5,11 +5,11 @@
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
-use strict;
-
package Bugzilla::Status;
-use Bugzilla::Error;
+use 5.10.1;
+use strict;
+
# This subclasses Bugzilla::Field::Choice instead of implementing
# ChoiceInterface, because a bug status literally is a special type
# of Field::Choice, not just an object that happens to have the same
@@ -23,6 +23,8 @@ use base qw(Bugzilla::Field::Choice Exporter);
closed_bug_statuses
);
+use Bugzilla::Error;
+
################################
##### Initialization #####
################################