aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video-caption/video-caption.service.ts
diff options
context:
space:
mode:
authorBO41 <lukasw41@gmail.com>2018-09-22 20:11:16 +0200
committerBO41 <lukasw41@gmail.com>2018-09-22 20:11:16 +0200
commit23db998f07d674c621972a769df73203b14e093a (patch)
tree6ecb88dc98bdbe69e113e4841d05aec34d6d0491 /client/src/app/shared/video-caption/video-caption.service.ts
parent9fe4406794aaa4503d090ca4bfe6872b4e556178 (diff)
downloadPeerTube-23db998f07d674c621972a769df73203b14e093a.tar.gz
PeerTube-23db998f07d674c621972a769df73203b14e093a.tar.zst
PeerTube-23db998f07d674c621972a769df73203b14e093a.zip
remove unused imports
Diffstat (limited to 'client/src/app/shared/video-caption/video-caption.service.ts')
-rw-r--r--client/src/app/shared/video-caption/video-caption.service.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/client/src/app/shared/video-caption/video-caption.service.ts b/client/src/app/shared/video-caption/video-caption.service.ts
index 08fd61265..a1838ab16 100644
--- a/client/src/app/shared/video-caption/video-caption.service.ts
+++ b/client/src/app/shared/video-caption/video-caption.service.ts
@@ -3,7 +3,7 @@ import { HttpClient } from '@angular/common/http'
3import { Injectable } from '@angular/core' 3import { Injectable } from '@angular/core'
4import { forkJoin, Observable, of } from 'rxjs' 4import { forkJoin, Observable, of } from 'rxjs'
5import { peertubeTranslate, ResultList } from '../../../../../shared' 5import { peertubeTranslate, ResultList } from '../../../../../shared'
6import { RestExtractor, RestService } from '../rest' 6import { RestExtractor } from '../rest'
7import { VideoService } from '@app/shared/video/video.service' 7import { VideoService } from '@app/shared/video/video.service'
8import { objectToFormData, sortBy } from '@app/shared/misc/utils' 8import { objectToFormData, sortBy } from '@app/shared/misc/utils'
9import { VideoCaptionEdit } from '@app/shared/video-caption/video-caption-edit.model' 9import { VideoCaptionEdit } from '@app/shared/video-caption/video-caption-edit.model'
@@ -15,7 +15,6 @@ export class VideoCaptionService {
15 constructor ( 15 constructor (
16 private authHttp: HttpClient, 16 private authHttp: HttpClient,
17 private serverService: ServerService, 17 private serverService: ServerService,
18 private restService: RestService,
19 private restExtractor: RestExtractor 18 private restExtractor: RestExtractor
20 ) {} 19 ) {}
21 20