From bc0d6de443e4c24a72d81bbb3978e7424ed81e8c Mon Sep 17 00:00:00 2001 From: Thomas Kemmer Date: Sun, 28 Oct 2018 13:09:35 +0100 Subject: [PATCH] Remove console log. --- src/rms/leaderboard/leaderboard.component.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/rms/leaderboard/leaderboard.component.ts b/src/rms/leaderboard/leaderboard.component.ts index ca7a154e..684a07d3 100644 --- a/src/rms/leaderboard/leaderboard.component.ts +++ b/src/rms/leaderboard/leaderboard.component.ts @@ -9,7 +9,6 @@ const compare = { } }; -// FIXME: @Input() with interface not working in Ionic 2 RC1? export class LeaderboardItem { id: number; driver: { name: string, code: string, color: string }; @@ -67,8 +66,4 @@ export class LeaderboardComponent { get items() { return this._items; } - - ngOnInit() { - console.log('Creating leaderboard'); - } }