()
| 42 | } |
| 43 | |
| 44 | private clearAllInternal(): void { |
| 45 | this.globalDefaults = {}; |
| 46 | this.profiles = {}; |
| 47 | this.activeProfile = null; |
| 48 | this.revision += 1; |
| 49 | log('info', '[Session] All defaults cleared'); |
| 50 | } |
| 51 | |
| 52 | private clearAllForProfile(profile: string | null): void { |
| 53 | if (profile === null) { |