From 5820a7da5980f127d7240e4e0ad9a1876e6b8ec5 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 2 Nov 2020 08:42:20 +0100 Subject: [PATCH] Bug 26673: Fix perlcritic complains This patch fixes the following perlcritic complain: Package declaration must match filename at line 19, column 1. Correct the filename or package statement. --- C4/Barcodes/ValueBuilder.pm | 2 ++ Koha/Z3950Responder/RPN.pm | 2 ++ 2 files changed, 4 insertions(+) diff --git a/C4/Barcodes/ValueBuilder.pm b/C4/Barcodes/ValueBuilder.pm index 2d23ee5a35..ea8bffafa3 100644 --- a/C4/Barcodes/ValueBuilder.pm +++ b/C4/Barcodes/ValueBuilder.pm @@ -1,3 +1,5 @@ +package C4::Barcodes::ValueBuilder; + # Copyright 2008-2010 Foundations Bible College # Parts copyright 2012 C & P Bibliography Services # diff --git a/Koha/Z3950Responder/RPN.pm b/Koha/Z3950Responder/RPN.pm index 335b5d14b9..71860ce460 100644 --- a/Koha/Z3950Responder/RPN.pm +++ b/Koha/Z3950Responder/RPN.pm @@ -1,3 +1,5 @@ +package Koha::Z3950Responder::RPN; + package Net::Z3950::RPN::Term; # Copyright The National Library of Finland 2018 -- 2.20.1