@@ -15,7 +15,7 @@ import { IKeyboardEvent } from 'vs/base/browser/keyboardEvent';
15
15
import * as dom from 'vs/base/browser/dom' ;
16
16
import { IMouseEvent , DragMouseEvent } from 'vs/base/browser/mouseEvent' ;
17
17
import { getPathLabel } from 'vs/base/common/labels' ;
18
- import { IAction , IActionRunner } from 'vs/base/common/actions' ;
18
+ import { IAction } from 'vs/base/common/actions' ;
19
19
import { IActionItem , Separator } from 'vs/base/browser/ui/actionbar/actionbar' ;
20
20
import { ITree , IAccessibilityProvider , ContextMenuEvent , IDataSource , IRenderer , DRAG_OVER_REJECT , IDragAndDropData , IDragOverReaction , IActionProvider } from 'vs/base/parts/tree/browser/tree' ;
21
21
import { InputBox , IInputValidationOptions } from 'vs/base/browser/ui/inputbox/inputBox' ;
@@ -310,8 +310,7 @@ export class CallStackController extends BaseDebugController {
310
310
311
311
export class CallStackActionProvider implements IActionProvider {
312
312
313
- // @ts -ignore unused injected service
314
- constructor ( @IInstantiationService private instantiationService : IInstantiationService , @debug . IDebugService private debugService : debug . IDebugService ) {
313
+ constructor ( @IInstantiationService private instantiationService : IInstantiationService ) {
315
314
// noop
316
315
}
317
316
@@ -886,19 +885,13 @@ export class WatchExpressionsRenderer implements IRenderer {
886
885
private static WATCH_EXPRESSION_TEMPLATE_ID = 'watchExpression' ;
887
886
private static VARIABLE_TEMPLATE_ID = 'variables' ;
888
887
private toDispose : lifecycle . IDisposable [ ] ;
889
- // @ts -ignore unused property
890
- private actionProvider : WatchExpressionsActionProvider ;
891
888
892
889
constructor (
893
- actionProvider : IActionProvider ,
894
- // @ts -ignore unused property
895
- private actionRunner : IActionRunner ,
896
890
@debug . IDebugService private debugService : debug . IDebugService ,
897
891
@IContextViewService private contextViewService : IContextViewService ,
898
892
@IThemeService private themeService : IThemeService
899
893
) {
900
894
this . toDispose = [ ] ;
901
- this . actionProvider = < WatchExpressionsActionProvider > actionProvider ;
902
895
}
903
896
904
897
public getHeight ( tree : ITree , element : any ) : number {
@@ -1135,10 +1128,6 @@ export class BreakpointsRenderer implements IRenderer {
1135
1128
private static BREAKPOINT_TEMPLATE_ID = 'breakpoint' ;
1136
1129
1137
1130
constructor (
1138
- // @ts -ignore unused property
1139
- private actionProvider : BreakpointsActionProvider ,
1140
- // @ts -ignore unused property
1141
- private actionRunner : IActionRunner ,
1142
1131
@IWorkspaceContextService private contextService : IWorkspaceContextService ,
1143
1132
@debug . IDebugService private debugService : debug . IDebugService ,
1144
1133
@IContextViewService private contextViewService : IContextViewService ,
0 commit comments