mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-18 23:59:43 +01:00
removing issue reporter API (#209125)
* first snap * sent the comments to the shadow realm * one comment we forgot to remove :(
This commit is contained in:
@@ -55,7 +55,6 @@ import { IExtHostFileSystemInfo } from 'vs/workbench/api/common/extHostFileSyste
|
||||
import { IExtHostInitDataService } from 'vs/workbench/api/common/extHostInitDataService';
|
||||
import { ExtHostInteractiveEditor } from 'vs/workbench/api/common/extHostInlineChat';
|
||||
import { ExtHostInteractive } from 'vs/workbench/api/common/extHostInteractive';
|
||||
import { ExtHostIssueReporter } from 'vs/workbench/api/common/extHostIssueReporter';
|
||||
import { ExtHostLabelService } from 'vs/workbench/api/common/extHostLabelService';
|
||||
import { ExtHostLanguageFeatures } from 'vs/workbench/api/common/extHostLanguageFeatures';
|
||||
import { ExtHostLanguages } from 'vs/workbench/api/common/extHostLanguages';
|
||||
@@ -217,7 +216,6 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
|
||||
const extHostChat = rpcProtocol.set(ExtHostContext.ExtHostChat, new ExtHostChat(rpcProtocol));
|
||||
const extHostAiRelatedInformation = rpcProtocol.set(ExtHostContext.ExtHostAiRelatedInformation, new ExtHostRelatedInformation(rpcProtocol));
|
||||
const extHostAiEmbeddingVector = rpcProtocol.set(ExtHostContext.ExtHostAiEmbeddingVector, new ExtHostAiEmbeddingVector(rpcProtocol));
|
||||
const extHostIssueReporter = rpcProtocol.set(ExtHostContext.ExtHostIssueReporter, new ExtHostIssueReporter(rpcProtocol));
|
||||
const extHostStatusBar = rpcProtocol.set(ExtHostContext.ExtHostStatusBar, new ExtHostStatusBar(rpcProtocol, extHostCommands.converter));
|
||||
const extHostSpeech = rpcProtocol.set(ExtHostContext.ExtHostSpeech, new ExtHostSpeech(rpcProtocol));
|
||||
|
||||
@@ -430,14 +428,6 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
|
||||
get onDidChangeLogLevel() {
|
||||
return _asExtensionEvent(extHostLogService.onDidChangeLogLevel);
|
||||
},
|
||||
registerIssueUriRequestHandler(handler: vscode.IssueUriRequestHandler) {
|
||||
checkProposedApiEnabled(extension, 'handleIssueUri');
|
||||
return extHostIssueReporter.registerIssueUriRequestHandler(extension, handler);
|
||||
},
|
||||
registerIssueDataProvider(handler: vscode.IssueDataProvider) {
|
||||
checkProposedApiEnabled(extension, 'handleIssueUri');
|
||||
return extHostIssueReporter.registerIssueDataProvider(extension, handler);
|
||||
},
|
||||
get appQuality(): string | undefined {
|
||||
checkProposedApiEnabled(extension, 'resolvers');
|
||||
return initData.quality;
|
||||
|
||||
Reference in New Issue
Block a user