Skip to content

Commit

Permalink
Remove "CSAF::Options::Common"
Browse files Browse the repository at this point in the history
  • Loading branch information
giterlizzi committed Apr 16, 2024
1 parent ff6e210 commit 3e16c35
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions lib/CSAF.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use warnings;
use utf8;

use CSAF::Builder;
use CSAF::Options::Common;
use CSAF::Parser;
use CSAF::Renderer;
use CSAF::Validator;
Expand All @@ -18,16 +17,10 @@ use overload '""' => \&to_string, fallback => 1;

use Moo;

our $VERSION = '0.20';
our $VERSION = '0.21';

our $CACHE = {};

has options => (
isa => sub { Carp::croak q{Not "CSAF::Options::Common" object} unless ref($_[0]) eq 'CSAF::Options::Common' },
is => 'lazy',
build => 1,
);

sub _build_options { CSAF::Options::Common->new }

sub BUILD {
Expand Down

0 comments on commit 3e16c35

Please sign in to comment.