Mercurial > hg > ugly-duckling
changeset 225:16d19c12e42f
Remove redundant injection of feature extraction service.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Fri, 21 Apr 2017 12:58:55 +0100 |
parents | 1c1cc4ec183c |
children | 4865567d9e43 |
files | src/app/playback-control/playback-control.component.ts |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/app/playback-control/playback-control.component.ts Fri Apr 21 12:55:24 2017 +0100 +++ b/src/app/playback-control/playback-control.component.ts Fri Apr 21 12:58:55 2017 +0100 @@ -1,6 +1,5 @@ import {Component, OnInit} from '@angular/core'; import {AudioPlayerService} from "../services/audio-player/audio-player.service"; -import {FeatureExtractionService} from "../services/feature-extraction/feature-extraction.service"; @Component({ selector: 'app-playback-control', @@ -9,8 +8,7 @@ }) export class PlaybackControlComponent implements OnInit { - constructor(private audioService: AudioPlayerService, - private featureExtractionService: FeatureExtractionService) { + constructor(private audioService: AudioPlayerService) { } ngOnInit() {}