Skip to content

Commit

Permalink
Use parent pragma in KernelHelp module
Browse files Browse the repository at this point in the history
  • Loading branch information
gemmaro authored and mquinson committed Oct 13, 2024
1 parent 72b21d7 commit b07cb3b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/Locale/Po4a/KernelHelp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@
# Modules and declarations
############################################################################

use Pod::Parser;
use Locale::Po4a::TransTractor qw(process new);
use Locale::Po4a::Common;

package Locale::Po4a::KernelHelp;

use 5.16.0;
use strict;
use warnings;

use parent qw(Locale::Po4a::TransTractor);

use Pod::Parser;
use Locale::Po4a::Common;

require Exporter;

use vars qw(@ISA @EXPORT $AUTOLOAD);
@ISA = qw(Locale::Po4a::TransTractor);
@EXPORT = qw(); # new process write read writepo readpo);
use vars qw(@EXPORT $AUTOLOAD);
@EXPORT = qw(); # new process write read writepo readpo);

my $debug = 0;

Expand Down

0 comments on commit b07cb3b

Please sign in to comment.