Remove unused service

pull/2879/head
Chocobozzz 2020-06-15 15:04:43 +02:00
parent ff9c3d9b18
commit c1466c52fb
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 3 deletions

View File

@ -2,14 +2,12 @@ import { map } from 'rxjs/operators'
import { Injectable } from '@angular/core'
import { ActivatedRouteSnapshot, Resolve, Router } from '@angular/router'
import { SearchService } from './search.service'
import { RedirectService } from '@app/core'
@Injectable()
export class ChannelLazyLoadResolver implements Resolve<any> {
constructor (
private router: Router,
private searchService: SearchService,
private redirectService: RedirectService
private searchService: SearchService
) { }
resolve (route: ActivatedRouteSnapshot) {