remove unused method

This commit is contained in:
rebornix
2018-11-29 10:38:42 -08:00
parent 52811a3a48
commit 9eb6d908e3
2 changed files with 0 additions and 8 deletions

View File

@@ -142,13 +142,6 @@ export class ExtHostComments implements ExtHostCommentsShape {
});
}
$getStartDraftLabel(handle: number): Thenable<string> {
const provider = this._documentProviders.get(handle);
return asThenable(() => {
return provider.startDraftLabel;
});
}
$provideDocumentComments(handle: number, uri: UriComponents): Thenable<modes.CommentInfo> {
const data = this._documents.getDocumentData(URI.revive(uri));
if (!data || !data.document) {