From 393bb1ac8dcb3ee0326acebede88423bd3d32569 Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Mon, 13 Aug 2018 15:03:00 +0530 Subject: test.component - removed unused code The NotificationService was injected into test component , but was never used. Hence removing it. Issue-ID: APPC-1149 Change-Id: I602eacec516877663e6c22881460573bc4259107 Signed-off-by: Arundathi Patil --- src/app/test/test.component.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/test/test.component.ts b/src/app/test/test.component.ts index 52b5d8a..529e628 100644 --- a/src/app/test/test.component.ts +++ b/src/app/test/test.component.ts @@ -25,7 +25,6 @@ import { NgxSpinnerService } from 'ngx-spinner'; import { saveAs } from 'file-saver'; import { Location } from '@angular/common'; import { ActivatedRoute, Router } from '@angular/router'; -import { NotificationService } from '.././shared/services/notification.service'; import { ParamShareService } from '.././shared/services/paramShare.service'; import { MappingEditorService } from '.././shared/services/mapping-editor.service'; import { NotificationsService } from 'angular2-notifications'; @@ -104,8 +103,7 @@ export class TestComponent implements OnInit { private userId = localStorage['userId']; constructor ( private location: Location, - private activeRoutes: ActivatedRoute, - private notificationService: NotificationService, + private activeRoutes: ActivatedRoute, private nService: NotificationsService, private router: Router, private paramShareService: ParamShareService, -- cgit 1.2.3-korg