diff options
author | Matt Selsky <selsky@columbia.edu> | 2012-12-01 02:18:21 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-12-01 02:18:21 +0100 |
commit | b4adb1ab4c7e3c34d64b92530602ca38144f249b (patch) | |
tree | e1c088d37f09b8b54bbde313b60f1ff874f2cf78 /Bugzilla/Whine | |
parent | 45f67203b182d6a64b9708a22d82a21e455deb74 (diff) | |
download | bugzilla-b4adb1ab4c7e3c34d64b92530602ca38144f249b.tar.gz bugzilla-b4adb1ab4c7e3c34d64b92530602ca38144f249b.tar.xz |
Bug 787668: Use |use parent| instead of |use base|
r/a=LpSolit
Diffstat (limited to 'Bugzilla/Whine')
-rw-r--r-- | Bugzilla/Whine/Query.pm | 2 | ||||
-rw-r--r-- | Bugzilla/Whine/Schedule.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Whine/Query.pm b/Bugzilla/Whine/Query.pm index b40ba1c3b..a4fd54539 100644 --- a/Bugzilla/Whine/Query.pm +++ b/Bugzilla/Whine/Query.pm @@ -10,7 +10,7 @@ package Bugzilla::Whine::Query; use 5.10.1; use strict; -use base qw(Bugzilla::Object); +use parent qw(Bugzilla::Object); use Bugzilla::Constants; use Bugzilla::Search::Saved; diff --git a/Bugzilla/Whine/Schedule.pm b/Bugzilla/Whine/Schedule.pm index 2171f84a5..f16c629af 100644 --- a/Bugzilla/Whine/Schedule.pm +++ b/Bugzilla/Whine/Schedule.pm @@ -10,7 +10,7 @@ package Bugzilla::Whine::Schedule; use 5.10.1; use strict; -use base qw(Bugzilla::Object); +use parent qw(Bugzilla::Object); use Bugzilla::Constants; |