Bug 3150: (QA follow-up) Remove unused variables

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Kyle Hall 2023-03-14 12:32:22 -04:00 committed by Tomas Cohen Arazi
parent d123287b18
commit 128517fe66
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -1333,7 +1333,7 @@ Return host only
sub get_marc_host_only {
my ($self) = @_;
my ( $host, $relatedparts ) = $self->get_marc_host;
my ( $host ) = $self->get_marc_host;
return $host;
}
@ -1349,7 +1349,7 @@ Return related parts only
sub get_marc_relatedparts_only {
my ($self) = @_;
my ( $host, $relatedparts ) = $self->get_marc_host;
my ( undef, $relatedparts ) = $self->get_marc_host;
return $relatedparts;
}