diff src/app/app.component.ts @ 22:3e96bcbfa5c5

Remove unused test service.
author Lucas Thompson <dev@lucas.im>
date Fri, 28 Oct 2016 17:21:58 +0100
parents 953932e9ba82
children 1ff1b5bdeb9e
line wrap: on
line diff
--- a/src/app/app.component.ts	Fri Oct 28 16:27:25 2016 +0100
+++ b/src/app/app.component.ts	Fri Oct 28 17:21:58 2016 +0100
@@ -1,5 +1,4 @@
 import {Component, Inject} from '@angular/core';
-import {MailService} from "./mail.service";
 
 @Component({
   selector: 'app-root',
@@ -13,12 +12,10 @@
   audioBuffer: AudioBuffer = undefined;
 
   constructor(
-    private mail: MailService,
     @Inject('piper-server-uri') private serverUri
   ) {}
 
   onUpdate(id, text) {
-    this.mail.update(id, text);
   }
 
   onAudioLoaded(buffer: AudioBuffer) {