Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
AziatkaVictor committed Apr 17, 2023
1 parent c34c40c commit 50a971b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/ltx/ltxSection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ export class LtxSection {
let offset = substr.lastIndexOf("\n") !== -1 ? substr.lastIndexOf("\n") : 0;
data.push(new LtxSectionLink(match[0], new Position(lineIndex, match.index - offset - 1), new Position(lineIndex, match.index + match[0].length - offset - 1)));
}
console.log(data);
return data;
}

Expand Down
1 change: 0 additions & 1 deletion src/providers/logicCompletionItemProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ function canAddParam(document: TextDocument, position: Position): boolean {
return false;
}
var resultEnd = match.index <= position.character && (match.index + match[0].length) >= position.character;
console.log(resultEnd);
return resultEnd;
}

Expand Down

0 comments on commit 50a971b

Please sign in to comment.