Removes unnecessary source code

This commit is contained in:
Lyubo Marinov 2018-05-10 18:30:12 -05:00
parent 3aff4967f1
commit 7fe421aeba
9 changed files with 0 additions and 90 deletions

View File

@ -20,15 +20,4 @@ export default class HangupButton extends AbstractHangupButton<Props, *> {
api.executeCommand('hangup');
window.close();
}
/**
* Indicates whether this button is disabled or not.
*
* @override
* @private
* @returns {boolean}
*/
_isDisabled() {
return false;
}
}

View File

@ -75,17 +75,6 @@ class InviteButton extends AbstractButton<Props, *> {
}
}
/**
* Indicates whether this button is disabled or not.
*
* @override
* @private
* @returns {boolean}
*/
_isDisabled() {
return false;
}
/**
* Implements React's {@link Component#render()}.
*

View File

@ -86,17 +86,6 @@ class AudioRouteButton extends AbstractButton<Props, *> {
}
}
/**
* Indicates whether this button is disabled or not.
*
* @override
* @private
* @returns {boolean}
*/
_isDisabled() {
return false;
}
_setVolumeComponent: (?Object) => void;
/**

View File

@ -40,17 +40,6 @@ class PictureInPictureButton extends AbstractButton<Props, *> {
this.props.dispatch(enterPictureInPicture());
}
/**
* Indicates whether this button is disabled or not.
*
* @override
* @private
* @returns {boolean}
*/
_isDisabled() {
return false;
}
/**
* Implements React's {@link Component#render()}.
*

View File

@ -55,17 +55,6 @@ class SettingsButton extends AbstractButton<Props, *> {
dispatch(toggleSettings());
}
}
/**
* Indicates whether this button is disabled or not.
*
* @override
* @private
* @returns {boolean}
*/
_isDisabled() {
return false;
}
}
/**

View File

@ -35,17 +35,6 @@ class AudioMuteButton extends AbstractAudioMuteButton<Props, *> {
label = 'toolbar.mute';
tooltip = 'toolbar.mute';
/**
* Indicates if this button should be disabled or not.
*
* @override
* @private
* @returns {boolean}
*/
_isDisabled() {
return false;
}
/**
* Indicates if audio is currently muted ot nor.
*
@ -68,7 +57,6 @@ class AudioMuteButton extends AbstractAudioMuteButton<Props, *> {
sendAnalytics(createToolbarEvent(AUDIO_MUTE, { enable: audioMuted }));
this.props.dispatch(setAudioMuted(audioMuted));
}
}
/**

View File

@ -44,17 +44,6 @@ class HangupButton extends AbstractHangupButton<Props, *> {
this.props.dispatch(disconnect(true));
}
}
/**
* Indicates if this button should be disabled or not.
*
* @override
* @private
* @returns {boolean}
*/
_isDisabled() {
return false;
}
}
export default translate(connect()(HangupButton));

View File

@ -81,7 +81,6 @@ class VideoMuteButton extends AbstractVideoMuteButton<Props, *> {
VIDEO_MUTISM_AUTHORITY.USER,
/* ensureTrack */ true));
}
}
/**

View File

@ -39,17 +39,6 @@ class AudioOnlyButton extends AbstractButton<Props, *> {
this.props.dispatch(toggleAudioOnly());
}
/**
* Indicates whether this button is disabled or not.
*
* @override
* @private
* @returns {boolean}
*/
_isDisabled() {
return false;
}
/**
* Indicates whether this button is in toggled state or not.
*