test.component - removed unused code 39/60239/2
authorArundathi Patil <arundpil@in.ibm.com>
Mon, 13 Aug 2018 09:33:00 +0000 (15:03 +0530)
committerTakamune Cho <tc012c@att.com>
Sun, 19 Aug 2018 19:31:59 +0000 (19:31 +0000)
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 <arundpil@in.ibm.com>
src/app/test/test.component.ts

index 52b5d8a..529e628 100644 (file)
@@ -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,