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,