mirror of
https://github.com/koloml/philomena-tagging-assistant.git
synced 2026-06-23 18:22:20 +00:00
Sonar: Added readonly to private members
This commit is contained in:
@@ -89,9 +89,9 @@ export type WithFields<FieldsType extends Record<string, any>> = {
|
||||
* API.
|
||||
*/
|
||||
export default abstract class CacheablePreferences<Fields> {
|
||||
#controller: ConfigurationController;
|
||||
#cachedValues: Map<keyof Fields, any> = new Map();
|
||||
#disposables: Function[] = [];
|
||||
readonly #controller: ConfigurationController;
|
||||
readonly #cachedValues: Map<keyof Fields, any> = new Map();
|
||||
readonly #disposables: Function[] = [];
|
||||
|
||||
/**
|
||||
* @param settingsNamespace Name of the field inside the extension storage where these preferences stored.
|
||||
|
||||
Reference in New Issue
Block a user