unused code delete

This commit is contained in:
leejh 2019-10-11 18:18:58 +09:00
parent eebb910b83
commit ed7e472464
2 changed files with 1 additions and 17 deletions

View File

@ -12,19 +12,10 @@ import {
massTalkDownloadFailure,
massTalkDownloadSuccess
} from './actions';
import { Login2Response } from '@ucap-webmessenger/pi';
import {
webLoginFailure,
webLoginSuccess
} from '@app/store/account/authentication';
import { of } from 'rxjs';
import { PublicApiService } from '@ucap-webmessenger/api-public';
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
import { StatusCode } from '@ucap-webmessenger/api';
import {
CommonApiService,
MassTalkDownloadRequest
} from '@ucap-webmessenger/api-common';
import { CommonApiService } from '@ucap-webmessenger/api-common';
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
import { EnvironmentsInfo, KEY_ENVIRONMENTS_INFO } from '@app/types';
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';

View File

@ -28,9 +28,6 @@ export class ExpansionPanelComponent implements OnInit {
@Input()
favoritBuddyList: UserInfo[];
@Output()
selectBuddy = new EventEmitter<UserInfo>();
@ContentChild(ExpansionPanelItemDirective, {
read: TemplateRef,
static: true
@ -43,10 +40,6 @@ export class ExpansionPanelComponent implements OnInit {
ngOnInit() {}
onClickBuddy(buddy: UserInfo) {
this.selectBuddy.emit(buddy);
}
expandMore() {
this.groupAccordion.openAll();
}