Remove unused service
This commit is contained in:
parent
ff9c3d9b18
commit
c1466c52fb
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue