Bug 25444: Simplify the code using a loop
[koha-ffzg.git] / C4 / BackgroundJob.pm
index f7dfe88..48683f9 100644 (file)
@@ -18,18 +18,12 @@ package C4::BackgroundJob;
 # You should have received a copy of the GNU General Public License
 # along with Koha; if not, see <http://www.gnu.org/licenses>.
 
-use strict;
-#use warnings; FIXME - Bug 2505
+use Modern::Perl;
 use C4::Context;
 use C4::Auth qw/get_session/;
 use Digest::MD5;
 
-use vars qw();
 
-BEGIN {
-       # set the version for version checking
-    $VERSION = 3.07.00.049;
-}
 
 =head1 NAME