Skip to content

Commit

Permalink
After eval-ing $VERSION, assign return value back to $VERSION
Browse files Browse the repository at this point in the history
Remove superfluous assignment to @isa.

Per rjbs code review in Perl#18950
  • Loading branch information
jkeenan committed Jul 6, 2021
1 parent 8308bfc commit c97dc2c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ext/Pod-Html/lib/Pod/Html.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ use strict;
use Exporter 'import';

our $VERSION = 1.29;
eval $VERSION;
our @ISA = qw(Exporter);
$VERSION = eval $VERSION;
our @EXPORT = qw(pod2html);

use Config;
Expand Down

0 comments on commit c97dc2c

Please sign in to comment.