Fixed lint

Change-Id: Icd6ef28d01feaede359e6e70f1d632037dcbabca
diff --git a/src/app/hello.ts b/src/app/hello.ts
index b67e7f6..554b2de 100644
--- a/src/app/hello.ts
+++ b/src/app/hello.ts
@@ -1,6 +1,5 @@
 /// <reference path="../../typings/index.d.ts"/>
 import {Component, OnInit} from '@angular/core';
-import {NgFor} from '@angular/common';
 import {StyleConfig} from './config/style.config';
 import {CoreService} from './services/rest/core.service';
 
@@ -9,7 +8,7 @@
   template: require('./hello.html'),
   providers: [CoreService],
 })
-export class HelloComponent {
+export class HelloComponent implements OnInit {
 
   // declare class properties
   public hello: string;
@@ -25,9 +24,9 @@
     this.coreService.getCoreEndpoints()
       .subscribe(
         endpoints => {
-          this.endpoints = endpoints
+          this.endpoints = endpoints;
         },
         err => console.log
-      )
+      );
   }
 }