keycloak-aplcache

Removed irrelevant comment

10/3/2016 6:57:08 PM

Details

diff --git a/examples/demo-template/angular2-product-app/src/main/webapp/app/app.component.ts b/examples/demo-template/angular2-product-app/src/main/webapp/app/app.component.ts
index e085032..cd8ba04 100644
--- a/examples/demo-template/angular2-product-app/src/main/webapp/app/app.component.ts
+++ b/examples/demo-template/angular2-product-app/src/main/webapp/app/app.component.ts
@@ -39,8 +39,6 @@ export class AppComponent {
   }
 
   reloadData() {
-    //angular don't have http interceptor yet
-
     this.http.get('/database/products')
       .map(res => res.json())
       .subscribe(prods => this.products = prods,