* Get the singleton instance
()
| 167 | * Get the singleton instance |
| 168 | */ |
| 169 | public static getInstance(): MdmService { |
| 170 | if (!this._instance) { |
| 171 | throw new Error("MdmService not initialized. Call createInstance() first.") |
| 172 | } |
| 173 | return this._instance |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Create and initialize the singleton instance |
no outgoing calls
no test coverage detected