Skip to content

Commit

Permalink
fix(): remove @Injectable decorator from HttpInterceptorService (#377)
Browse files Browse the repository at this point in the history
we can remove this decorator since this service isnt intended to be injected alone, it needs to be provided via factory. (e.g. Router)
  • Loading branch information
emoralesb05 authored Feb 28, 2017
1 parent 977e5ad commit 08d272a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/platform/http/interceptors/http-interceptor.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export interface IHttpInterceptorConfig {
paths: string[];
}

@Injectable()
export class HttpInterceptorService {

private _requestInterceptors: IHttpInterceptorMapping[] = [];
Expand Down

0 comments on commit 08d272a

Please sign in to comment.