mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
Remove unneeded |oldtypes| variable from bidi.js.
This commit is contained in:
parent
ba95e0b07b
commit
6e4283fc45
1 changed files with 1 additions and 2 deletions
|
@ -154,7 +154,6 @@ var bidi = PDFJS.bidi = (function bidiClosure() {
|
|||
|
||||
var chars = [];
|
||||
var types = [];
|
||||
var oldtypes = [];
|
||||
var numBidi = 0;
|
||||
|
||||
for (var i = 0; i < strLength; ++i) {
|
||||
|
@ -174,7 +173,7 @@ var bidi = PDFJS.bidi = (function bidiClosure() {
|
|||
if (charType == 'R' || charType == 'AL' || charType == 'AN')
|
||||
numBidi++;
|
||||
|
||||
oldtypes[i] = types[i] = charType;
|
||||
types[i] = charType;
|
||||
}
|
||||
|
||||
// detect the bidi method
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue