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:
parent
d123287b18
commit
128517fe66
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue