Bug 30921: (QA follow-up) Remove unnecessary if

The statement is already inside an if block with the same condition.

Signed-off-by: Joonas Kylmälä <joonas.kylmala@iki.fi>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Joonas Kylmälä 2022-09-12 16:24:31 +00:00 committed by Tomas Cohen Arazi
parent daf2e4b3c2
commit af81aaa8a6
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -190,7 +190,7 @@ sub get_biblio_marcxml {
}
}
);
$record_processor->process($record) if $expanded_avs;
$record_processor->process($record);
}
return $record ? $record->as_xml_record() : undef;