* Delete selected keys from settings cache * @param {string[]} keyList Keys to remove * @returns {void}
(keyList : string[])
| 155 | * @returns {void} |
| 156 | */ |
| 157 | static deleteCache(keyList : string[]) { |
| 158 | for (const key of keyList) { |
| 159 | delete Settings.cacheList[key]; |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * Stop the cache cleaner if running |
no outgoing calls
no test coverage detected