mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
remove double semicolons (#28110)
This commit is contained in:
committed by
Matt Bierner
parent
d5890e4a16
commit
544d44350b
@@ -68,7 +68,7 @@ export function getLanguageModes(supportedLanguages: { [languageId: string]: boo
|
||||
}
|
||||
return {
|
||||
getModeAtPosition(document: TextDocument, position: Position): LanguageMode {
|
||||
let languageId = documentRegions.get(document).getLanguageAtPosition(position);;
|
||||
let languageId = documentRegions.get(document).getLanguageAtPosition(position);
|
||||
if (languageId) {
|
||||
return modes[languageId];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user