fix build break in sql agent (#1083)

fix build break in master branch
This commit is contained in:
Abbie Petchtes
2018-04-05 11:55:28 -07:00
committed by GitHub
parent 782623cba9
commit 2508464fde

View File

@@ -52,7 +52,6 @@ export class JobHistoryComponent extends Disposable implements OnInit {
private _stepRows: JobStepsViewRow[] = [];
private _showSteps: boolean = false;
private _runStatus: string = undefined;
private _messageService: IMessageService;
private _agentJobCacheService: IAgentJobCacheService;
private _notificationService: INotificationService;
@@ -69,7 +68,6 @@ export class JobHistoryComponent extends Disposable implements OnInit {
this._treeRenderer = new JobHistoryRenderer();
this._treeFilter = new JobHistoryFilter();
this._jobManagementService = bootstrapService.jobManagementService;
this._messageService = bootstrapService.messageService;
this._agentJobCacheService = bootstrapService.agentJobCacheService;
this._notificationService = bootstrapService.notificationService;
}