# HG changeset patch # User Lucas Thompson # Date 1492775935 -3600 # Node ID 16d19c12e42fc22469938c1f10936a8c27d45826 # Parent 1c1cc4ec183cd47025dae268a7243bc868ffc92e Remove redundant injection of feature extraction service. diff -r 1c1cc4ec183c -r 16d19c12e42f src/app/playback-control/playback-control.component.ts --- 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() {}