Skip to content

Commit

Permalink
Merge pull request #22 from magento-techdivision/master
Browse files Browse the repository at this point in the history
PHP73 Compatibility
  • Loading branch information
danielrenaud authored Jul 26, 2019
2 parents 4df0182 + a863445 commit 8221062
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions library/Zend/Pdf/FileParser/Font/OpenType.php
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,6 @@ protected function _parseCmapTable()
if ($language != 0) {
$this->_debugLog('Type 0 cmap tables must be language-independent;'
. ' language: %d; skipping', $language);
continue;
}
break;

Expand All @@ -917,7 +916,7 @@ protected function _parseCmapTable()
case 0xa: // break intentionally omitted
case 0xc:
$this->_debugLog('Format: 0x%x currently unsupported; skipping', $format);
continue;
break;
//$this->skipBytes(2);
//$cmapLength = $this->readUInt(4);
//$language = $this->readUInt(4);
Expand All @@ -929,7 +928,7 @@ protected function _parseCmapTable()

default:
$this->_debugLog('Unknown subtable format: 0x%x; skipping', $format);
continue;
break;
}
$cmapType = $format;
break;
Expand Down

0 comments on commit 8221062

Please sign in to comment.