[Changeset] a?lines_length was not used within inverse function

This commit is contained in:
webzwo0i 2013-12-08 17:27:48 +01:00
parent e04f46d477
commit 021db28a02

View file

@ -1841,14 +1841,6 @@ exports.inverse = function (cs, lines, alines, pool) {
}
}
function lines_length() {
if ((typeof lines.length) == "number") {
return lines.length;
} else {
return lines.length();
}
}
function alines_get(idx) {
if (alines.get) {
return alines.get(idx);
@ -1857,14 +1849,6 @@ exports.inverse = function (cs, lines, alines, pool) {
}
}
function alines_length() {
if ((typeof alines.length) == "number") {
return alines.length;
} else {
return alines.length();
}
}
var curLine = 0;
var curChar = 0;
var curLineOpIter = null;