mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
Take uri as argument instead of string version of uri
This commit is contained in:
@@ -131,8 +131,8 @@ export class ExtHostDocumentsAndEditors implements ExtHostDocumentsAndEditorsSha
|
||||
}
|
||||
}
|
||||
|
||||
getDocument(strUrl: string): ExtHostDocumentData {
|
||||
return this._documents.get(strUrl);
|
||||
getDocument(uri: URI): ExtHostDocumentData {
|
||||
return this._documents.get(uri.toString());
|
||||
}
|
||||
|
||||
allDocuments(): ExtHostDocumentData[] {
|
||||
|
||||
Reference in New Issue
Block a user