From d8e61d49c029a8ffd43fa8a889a7ee5b10595f15 Mon Sep 17 00:00:00 2001 From: addison Date: Wed, 3 Feb 2021 23:21:17 -0500 Subject: [PATCH] removed unused imports --- src/app/send/send.component.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/app/send/send.component.ts b/src/app/send/send.component.ts index 2386c63556..097b246ba2 100644 --- a/src/app/send/send.component.ts +++ b/src/app/send/send.component.ts @@ -4,11 +4,6 @@ import { OnInit, } from '@angular/core'; -import { - ActivatedRoute , - Router, -} from '@angular/router'; - import { EnvironmentService } from 'jslib/abstractions/environment.service'; import { I18nService } from 'jslib/abstractions/i18n.service'; import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service'; @@ -41,7 +36,7 @@ export class SendComponent extends BaseSendComponent implements OnInit { constructor(sendService: SendService, i18nService: I18nService, platformUtilsService: PlatformUtilsService, environmentService: EnvironmentService, broadcasterService: BroadcasterService, ngZone: NgZone, - private router: Router, private route: ActivatedRoute, searchService: SearchService) { + searchService: SearchService) { super(sendService, i18nService, platformUtilsService, environmentService, broadcasterService, ngZone, searchService); }