Remove unused service

This commit is contained in:
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 { Injectable } from '@angular/core'
import { ActivatedRouteSnapshot, Resolve, Router } from '@angular/router' import { ActivatedRouteSnapshot, Resolve, Router } from '@angular/router'
import { SearchService } from './search.service' import { SearchService } from './search.service'
import { RedirectService } from '@app/core'
@Injectable() @Injectable()
export class ChannelLazyLoadResolver implements Resolve<any> { export class ChannelLazyLoadResolver implements Resolve<any> {
constructor ( constructor (
private router: Router, private router: Router,
private searchService: SearchService, private searchService: SearchService
private redirectService: RedirectService
) { } ) { }
resolve (route: ActivatedRouteSnapshot) { resolve (route: ActivatedRouteSnapshot) {