Remove references to deprecated calling convention

Deprecated 4 years ago, no longer supported since 2 years ago.
This commit is contained in:
Juerd Waalboer 2023-11-24 05:49:43 +01:00
parent 52749df5f3
commit dbe75efe7f

View file

@ -28,13 +28,7 @@ sub add_entry($self, $entry) {
}
sub add($self, $amount, $description, $data = {}) {
Carp::croak "Non-hash data argument; possibly a deprecated call style"
if not ref $data;
# Old pre-v3 call styles:
# ->add(undef, ...) => just remove the "undef,"
# ->add($user, ...) => use $cart->add(...)->add_contra($user, ...)
# ->add($entry) => use $cart->add_entry($entry)
ref $data or Carp::croak "Non-hash data argument";
return $self->add_entry(RevBank::Cart::Entry->new($amount, $description, $data));
}