Skip to content

Commit

Permalink
Fix merge issue to resolve CI build failure (#2304)
Browse files Browse the repository at this point in the history
Fixes #2302
  • Loading branch information
DonJayamanne authored Aug 1, 2018
1 parent 19d8a08 commit 3cb14e4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/client/debugger/banner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { inject, injectable } from 'inversify';
import { Disposable } from 'vscode';
import { IApplicationEnvironment, IApplicationShell, IDebugService } from '../common/application/types';
import '../common/extensions';
import { IBrowserService, IDisposableRegistry, IExperimentalDebuggerBanner,
import { IBrowserService, IDisposableRegistry,
ILogger, IPersistentStateFactory } from '../common/types';
import { IServiceContainer } from '../ioc/types';
import { DebuggerTypeName } from './Common/constants';
Expand Down
4 changes: 2 additions & 2 deletions src/client/debugger/serviceRegistry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { FileSystem } from '../common/platform/fileSystem';
import { PlatformService } from '../common/platform/platformService';
import { IFileSystem, IPlatformService } from '../common/platform/types';
import { CurrentProcess } from '../common/process/currentProcess';
import { ICurrentProcess, IExperimentalDebuggerBanner, ISocketServer } from '../common/types';
import { ICurrentProcess, ISocketServer } from '../common/types';
import { ServiceContainer } from '../ioc/container';
import { ServiceManager } from '../ioc/serviceManager';
import { IServiceContainer, IServiceManager } from '../ioc/types';
Expand All @@ -18,7 +18,7 @@ import { DebugStreamProvider } from './Common/debugStreamProvider';
import { ProtocolLogger } from './Common/protocolLogger';
import { ProtocolParser } from './Common/protocolParser';
import { ProtocolMessageWriter } from './Common/protocolWriter';
import { IDebugStreamProvider, IProtocolLogger, IProtocolMessageWriter, IProtocolParser } from './types';
import { IDebugStreamProvider, IExperimentalDebuggerBanner, IProtocolLogger, IProtocolMessageWriter, IProtocolParser } from './types';

export function initializeIoc(): IServiceContainer {
const cont = new Container();
Expand Down
4 changes: 2 additions & 2 deletions src/client/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ import { registerTypes as processRegisterTypes } from './common/process/serviceR
import { registerTypes as commonRegisterTypes } from './common/serviceRegistry';
import { ITerminalHelper } from './common/terminal/types';
import { GLOBAL_MEMENTO, IConfigurationService, IDisposableRegistry,
IExperimentalDebuggerBanner, IExtensionContext, ILogger, IMemento, IOutputChannel,
IExtensionContext, ILogger, IMemento, IOutputChannel,
IPersistentStateFactory, WORKSPACE_MEMENTO } from './common/types';
import { registerTypes as variableRegisterTypes } from './common/variables/serviceRegistry';
import { AttachRequestArguments, LaunchRequestArguments } from './debugger/Common/Contracts';
import { BaseConfigurationProvider } from './debugger/configProviders/baseProvider';
import { registerTypes as debugConfigurationRegisterTypes } from './debugger/configProviders/serviceRegistry';
import { registerTypes as debuggerRegisterTypes } from './debugger/serviceRegistry';
import { IDebugConfigurationProvider } from './debugger/types';
import { IDebugConfigurationProvider, IExperimentalDebuggerBanner } from './debugger/types';
import { registerTypes as formattersRegisterTypes } from './formatters/serviceRegistry';
import { IInterpreterSelector } from './interpreter/configuration/types';
import { ICondaService, IInterpreterService, PythonInterpreter } from './interpreter/contracts';
Expand Down
2 changes: 1 addition & 1 deletion src/test/debugger/banner.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { expect } from 'chai';
import * as typemoq from 'typemoq';
import { DebugSession } from 'vscode';
import { IApplicationShell, IDebugService } from '../../client/common/application/types';
import { IBrowserService, IDisposableRegistry, IExperimentalDebuggerBanner,
import { IBrowserService, IDisposableRegistry,
ILogger, IPersistentState, IPersistentStateFactory } from '../../client/common/types';
import { ExperimentalDebuggerBanner, PersistentStateKeys } from '../../client/debugger/banner';
import { DebuggerTypeName } from '../../client/debugger/Common/constants';
Expand Down

0 comments on commit 3cb14e4

Please sign in to comment.