| 275 | } |
| 276 | |
| 277 | void CodeEditingManagerService::Dispose() |
| 278 | { |
| 279 | // Stop async task |
| 280 | if (CodeEditingManager::IsAsyncOpenRunning()) |
| 281 | { |
| 282 | AsyncOpenThread->Kill(true); |
| 283 | } |
| 284 | |
| 285 | // Cleanup |
| 286 | CodeEditors.ClearDelete(); |
| 287 | } |
nothing calls this directly
no test coverage detected