Remove unused methods

pull/21833/head
Michael Telatynski 2021-06-16 12:04:01 +01:00
parent 3162d144e2
commit deb2e8d679
2 changed files with 0 additions and 16 deletions

View File

@ -705,12 +705,6 @@ export default class RoomView extends React.Component<IProps, IState> {
}
}
private onLayoutChange = () => {
this.setState({
layout: SettingsStore.getValue("layout"),
});
};
private onRightPanelStoreUpdate = () => {
this.setState({
showRightPanel: RightPanelStore.getSharedInstance().isOpenForRoom,

View File

@ -96,16 +96,6 @@ export default class AuxPanel extends React.Component<IProps, IState> {
}
}
onConferenceNotificationClick = (ev, type) => {
dis.dispatch({
action: 'place_call',
type: type,
room_id: this.props.room.roomId,
});
ev.stopPropagation();
ev.preventDefault();
};
_rateLimitedUpdate = new RateLimitedFunc(() => {
if (SettingsStore.getValue("feature_state_counters")) {
this.setState({counters: this._computeCounters()});