Merge pull request #4367 from nnethercote/rm-oldtypes

Remove unneeded |oldtypes| variable from bidi.js.
This commit is contained in:
Yury Delendik 2014-03-03 09:01:13 -06:00
commit c6d69fe0ac

View File

@ -154,7 +154,6 @@ var bidi = PDFJS.bidi = (function bidiClosure() {
var chars = []; var chars = [];
var types = []; var types = [];
var oldtypes = [];
var numBidi = 0; var numBidi = 0;
for (var i = 0; i < strLength; ++i) { for (var i = 0; i < strLength; ++i) {
@ -174,7 +173,7 @@ var bidi = PDFJS.bidi = (function bidiClosure() {
if (charType == 'R' || charType == 'AL' || charType == 'AN') if (charType == 'R' || charType == 'AL' || charType == 'AN')
numBidi++; numBidi++;
oldtypes[i] = types[i] = charType; types[i] = charType;
} }
// detect the bidi method // detect the bidi method