Skip to content

Commit 66a1df3

Browse files
committed
Move CommandService implementation up to /workbench/ (microsoft#44281)
1 parent 8ce17ad commit 66a1df3

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/workbench/electron-browser/shell.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ import { IMarkerService } from 'vs/platform/markers/common/markers';
5555
import { IEnvironmentService } from 'vs/platform/environment/common/environment';
5656
import { ISearchService } from 'vs/platform/search/common/search';
5757
import { ICommandService } from 'vs/platform/commands/common/commands';
58-
import { CommandService } from 'vs/platform/commands/common/commandService';
58+
import { CommandService } from 'vs/workbench/services/commands/common/commandService';
5959
import { IWorkspaceContextService, WorkbenchState } from 'vs/platform/workspace/common/workspace';
6060
import { IExtensionService } from 'vs/platform/extensions/common/extensions';
6161
import { WorkbenchModeServiceImpl } from 'vs/workbench/services/mode/common/workbenchModeService';

src/vs/platform/commands/common/commandService.ts renamed to src/vs/workbench/services/commands/common/commandService.ts

File renamed without changes.

src/vs/platform/commands/test/commandService.test.ts renamed to src/vs/workbench/services/commands/test/common/commandService.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import * as assert from 'assert';
88
import { IDisposable } from 'vs/base/common/lifecycle';
99
import { TPromise } from 'vs/base/common/winjs.base';
1010
import { CommandsRegistry } from 'vs/platform/commands/common/commands';
11-
import { CommandService } from 'vs/platform/commands/common/commandService';
11+
import { CommandService } from 'vs/workbench/services/commands/common/commandService';
1212
import { IExtensionService, ExtensionPointContribution, IExtensionDescription, ProfileSession } from 'vs/platform/extensions/common/extensions';
1313
import { InstantiationService } from 'vs/platform/instantiation/common/instantiationService';
1414
import { IExtensionPoint } from 'vs/platform/extensions/common/extensionsRegistry';

0 commit comments

Comments
 (0)