From 2508464fdea1e43a91f55e85de58a366dc689419 Mon Sep 17 00:00:00 2001 From: Abbie Petchtes Date: Thu, 5 Apr 2018 11:55:28 -0700 Subject: [PATCH] fix build break in sql agent (#1083) fix build break in master branch --- src/sql/parts/jobManagement/views/jobHistory.component.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/sql/parts/jobManagement/views/jobHistory.component.ts b/src/sql/parts/jobManagement/views/jobHistory.component.ts index d73e18d077..ca2ec3710c 100644 --- a/src/sql/parts/jobManagement/views/jobHistory.component.ts +++ b/src/sql/parts/jobManagement/views/jobHistory.component.ts @@ -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; }