ace2_inner: Delete unnecessary `currentLine` variable

pull/5153/head
Richard Hansen 2021-08-15 00:35:23 -04:00
parent 9fc613d362
commit bf10e70f2e
1 changed files with 1 additions and 3 deletions

View File

@ -3543,14 +3543,13 @@ function Ace2Inner(editorInfo, cssManagers) {
const defaultLineHeight = parseInt(innerdocbodyStyles['line-height']);
let docLine = document.body.firstElementChild;
let currentLine = 0;
let h = null;
// First loop to calculate the heights from doc body
while (docLine) {
const nextDocLine = docLine.nextElementSibling;
if (nextDocLine) {
if (currentLine === 0) {
if (lineOffsets.length === 0) {
// It's the first line. For line number alignment purposes, its
// height is taken to be the top offset of the next line. If we
// didn't do this special case, we would miss out on any top margin
@ -3582,7 +3581,6 @@ function Ace2Inner(editorInfo, cssManagers) {
lineHeights.push(defaultLineHeight);
}
docLine = nextDocLine;
currentLine++;
}
let newNumLines = rep.lines.length();