diff --git a/module/finc/src/finc/ILS/Driver/FincILS.php b/module/finc/src/finc/ILS/Driver/FincILS.php
index ae3a88631ddbbd52d5c15bc999f64f0ca9370cba..edf613808c1d286beb5a95bfe5832a146bdc1ca4 100644
--- a/module/finc/src/finc/ILS/Driver/FincILS.php
+++ b/module/finc/src/finc/ILS/Driver/FincILS.php
@@ -1384,10 +1384,10 @@ class FincILS extends PAIA implements LoggerAwareInterface
                 array_values($this->staticStatusRules['rules']),
                 (array)$this->staticStatusRules['stopFlags']
             );
-            $context = array(
+            $context = [
                 'authenticator' => $this->auth,
-                'record' => $this->getRecord($id),
-            );
+                'record' => $this->getRecord($id)
+            ];
             $context = $eval($context);
             return [[
                 'id'           => $id,
@@ -1425,16 +1425,15 @@ class FincILS extends PAIA implements LoggerAwareInterface
      */
     protected function hasILSData($id)
     {
-        $retVal = [];
         foreach ($this->config['General']['queryIls'] as $value) {
             list($methodName, $methodReturn) = explode(':', $value);
             // if we have one mismatch we can already stop as this record does
             // not qualify for querying the ILS
             if ($methodReturn === "") {
-                if (!is_null($this->getRecord($id)->tryMethod($methodName))) {
+                if (null !== $this->getRecord($id)->tryMethod($methodName)) {
                     return false;
                 }
-            } elseif (!in_array($methodReturn, (array) $this->getRecord($id)->tryMethod($methodName))) {
+            } elseif (!in_array($methodReturn, (array)$this->getRecord($id)->tryMethod($methodName))) {
                 return false;
             }
         }
diff --git a/module/finc/src/finc/RecordDriver/SolrMarcFincTrait.php b/module/finc/src/finc/RecordDriver/SolrMarcFincTrait.php
index c6f054f10d16f6b11baf4b86b9d3e3700c684c0c..a81cf67cd39e26d782fa9c41e5af53dd1e920e36 100644
--- a/module/finc/src/finc/RecordDriver/SolrMarcFincTrait.php
+++ b/module/finc/src/finc/RecordDriver/SolrMarcFincTrait.php
@@ -728,53 +728,6 @@ trait SolrMarcFincTrait
         return $matches;
     }
 
-    /**
-     * Get an array of information about Journal holdings realised for the
-     * special needs of University library of Chemnitz. MAB fields 720.
-     * Refs #328
-     *
-     * @return array
-     */
-    public function getJournalHoldings()
-    {
-        $retval = [];
-        $match = [];
-
-        $fields = $this->getMarcRecord()->getFields('971');
-        if (!$fields) {
-            return [];
-        }
-
-        $key = 0;
-        foreach ($fields as $field) {
-            if ($subfield = $field->getSubfield('k')) {
-                preg_match(
-                    '/(.*)##(.*)##(.*)/',
-                    trim($subfield->getData()),
-                    $match
-                );
-                $retval[$key]['callnumber'] = trim($match[1]);
-                $retval[$key]['holdings'] = trim($match[2]);
-                $retval[$key]['footnote'] = trim($match[3]);
-                $retval[$key]['is_holdable'] = 1;
-
-                if (count($this->getBarcode()) == 1) {
-                    $current = $this->getBarcode();
-                    $barcode = $current[0];
-                } else {
-                    $barcode = '';
-                }
-                $retval[$key]['link'] =
-                    '/Record/' . $this->getUniqueID()
-                    . '/HoldJournalCHE?callnumber='
-                    . urlencode($retval[$key]['callnumber'])
-                    . '&barcode=' . $barcode;
-                $key++;
-            }
-        }
-        return $retval;
-    }
-
     /**
      * Return a local access number for call number.
      * Marc field depends on library e.g. 975 for WHZ.