General cleanup of SettingController class (#9170)

Noticed while working in the area.
pull/28217/head
Travis Ralston 2022-08-10 16:38:53 -04:00 committed by GitHub
parent fe60609fb2
commit 946aa7f979
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -63,16 +63,14 @@ export default abstract class SettingController {
* @param {String} roomId The room ID, may be null.
* @param {*} newValue The new value for the setting, may be null.
*/
public onChange(level: SettingLevel, roomId: string, newValue: any) {
public onChange(level: SettingLevel, roomId: string, newValue: any): void {
// do nothing by default
// FIXME: force a fresh on the RoomView for the roomId in question
}
/**
* Gets whether the setting has been disabled due to this controller.
*/
public get settingDisabled() {
public get settingDisabled(): boolean {
return false;
}
}