Skip to content

Commit 8221062

Browse files
authored
Merge pull request #22 from magento-techdivision/master
PHP73 Compatibility
2 parents 4df0182 + a863445 commit 8221062

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

library/Zend/Pdf/FileParser/Font/OpenType.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,6 @@ protected function _parseCmapTable()
898898
if ($language != 0) {
899899
$this->_debugLog('Type 0 cmap tables must be language-independent;'
900900
. ' language: %d; skipping', $language);
901-
continue;
902901
}
903902
break;
904903

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

930929
default:
931930
$this->_debugLog('Unknown subtable format: 0x%x; skipping', $format);
932-
continue;
931+
break;
933932
}
934933
$cmapType = $format;
935934
break;

0 commit comments

Comments
 (0)