From: Arundathi Patil Date: Mon, 13 Aug 2018 09:33:00 +0000 (+0530) Subject: test.component - removed unused code X-Git-Tag: 1.4.0~40 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=393bb1ac8dcb3ee0326acebede88423bd3d32569;p=appc%2Fcdt.git 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 --- 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,