File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import * as path from 'path';
88import * as fs from 'fs' ;
99import * as child_process from 'child_process' ;
1010import * as settings from './configSettings' ;
11- import { CancellationToken , TextDocument , Range , Position } from 'vscode' ;
11+ import { CancellationToken , TextDocument , Range } from 'vscode' ;
1212import { isNotInstalledError } from './helpers' ;
1313import { mergeEnvVariables , parseEnvFile } from './envFileParser' ;
1414
@@ -324,7 +324,7 @@ export function getWindowsLineEndingCount(document: TextDocument, offset: Number
324324
325325 // In order to prevent the one-time loading of large files from taking up too much memory
326326 for ( let pos = 0 ; pos < offset ; pos += readBlock ) {
327- let startAt = document . positionAt ( pos )
327+ let startAt = document . positionAt ( pos ) ;
328328 let endAt = null ;
329329
330330 if ( offsetDiff >= readBlock ) {
You can’t perform that action at this time.
0 commit comments