diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2018-08-13 15:03:00 +0530 |
---|---|---|
committer | Takamune Cho <tc012c@att.com> | 2018-08-19 19:31:59 +0000 |
commit | 393bb1ac8dcb3ee0326acebede88423bd3d32569 (patch) | |
tree | ca351487e163e7dbf6ec2d4fc8da896f38952fb9 /src | |
parent | 3dbd8b329a49c0387496be4b1d7a2ab3ce6b84c5 (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>
Diffstat (limited to 'src')
-rw-r--r-- | src/app/test/test.component.ts | 4 |
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, |