aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2018-08-13 15:03:00 +0530
committerTakamune Cho <tc012c@att.com>2018-08-19 19:31:59 +0000
commit393bb1ac8dcb3ee0326acebede88423bd3d32569 (patch)
treeca351487e163e7dbf6ec2d4fc8da896f38952fb9
parent3dbd8b329a49c0387496be4b1d7a2ab3ce6b84c5 (diff)
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 <arundpil@in.ibm.com>
-rw-r--r--src/app/test/test.component.ts4
1 files changed, 1 insertions, 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,