]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+my-account/shared/actor-avatar-info.component.ts
remove unused imports
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / shared / actor-avatar-info.component.ts
index e0b25ad33394d7acdf72d70361b72ad23eff4810..7b80b1ed439368a14467fe9f927da99d6e4c0956 100644 (file)
@@ -1,7 +1,5 @@
 import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'
-import { AuthService } from '../../core'
 import { ServerService } from '../../core/server'
-import { UserService } from '../../shared/users'
 import { NotificationsService } from 'angular2-notifications'
 import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
 import { Account } from '@app/shared/account/account.model'
@@ -19,8 +17,6 @@ export class ActorAvatarInfoComponent {
   @Output() avatarChange = new EventEmitter<FormData>()
 
   constructor (
-    private userService: UserService,
-    private authService: AuthService,
     private serverService: ServerService,
     private notificationsService: NotificationsService
   ) {}