mirror of
https://codeberg.org/h3xx/simplify_static_dir
synced 2024-08-14 23:57:24 +00:00
Unpack @_ first (PBP)
This commit is contained in:
parent
907a7113a8
commit
7dbbb5422a
8 changed files with 28 additions and 22 deletions
|
@ -9,9 +9,9 @@ require Directory::Simplify::Utils;
|
|||
# :squash-remove-end:
|
||||
|
||||
sub new {
|
||||
my $class = shift;
|
||||
my ($class, %args) = @_;
|
||||
return bless {
|
||||
@_,
|
||||
%args,
|
||||
}, $class;
|
||||
}
|
||||
|
||||
|
|
|
@ -11,11 +11,11 @@ require Directory::Simplify::Instruction::Hardlink;
|
|||
# :squash-remove-end:
|
||||
|
||||
sub new {
|
||||
my $class = shift;
|
||||
my ($class, %args) = @_;
|
||||
return bless {
|
||||
filehash => undef,
|
||||
min_size => 1,
|
||||
@_,
|
||||
%args,
|
||||
}, $class;
|
||||
}
|
||||
|
||||
|
|
|
@ -9,10 +9,10 @@ require Directory::Simplify::Utils;
|
|||
# :squash-remove-end:
|
||||
|
||||
sub new {
|
||||
my $class = shift;
|
||||
my ($class, %args) = @_;
|
||||
return bless {
|
||||
freed => 0,
|
||||
@_,
|
||||
%args,
|
||||
}, $class;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue