()
| 218 | } |
| 219 | |
| 220 | private static async getSavedInversionFixes(): Promise<string | null> { |
| 221 | return this.store.get(DevTools.KEY_FILTER); |
| 222 | } |
| 223 | |
| 224 | private static saveInversionFixes(text: string): void { |
| 225 | this.store.set(DevTools.KEY_FILTER, text); |
no test coverage detected