Skip to content

Commit

Permalink
changing permissions on info hash structures
Browse files Browse the repository at this point in the history
  • Loading branch information
bodo-hugo-barwich committed Nov 1, 2021
1 parent 4ac8368 commit 8c873f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/MetaCPAN/Role/Script.pm
Original file line number Diff line number Diff line change
Expand Up @@ -98,21 +98,21 @@ has index => (
has cluster_info => (
isa => HashRef,
traits => ['Hash'],
is => 'ro',
is => 'rw',
default => sub { {} },
);

has indices_info => (
isa => HashRef,
traits => ['Hash'],
is => 'ro',
is => 'rw',
default => sub { {} },
);

has aliases_info => (
isa => HashRef,
traits => ['Hash'],
is => 'ro',
is => 'rw',
default => sub { {} },
);

Expand Down

0 comments on commit 8c873f8

Please sign in to comment.