From e4bef9e81885e89e77d259ac1f097dce46fc89ea Mon Sep 17 00:00:00 2001 From: Anastasia Katsman Date: Thu, 12 Feb 2026 18:23:49 +0100 Subject: [PATCH] testFramework [starter]: drop simpleScope GitOrigin-RevId: 908316241c118fd94bb05b604bc1ac52d2ceee0a --- .../src/com/intellij/ide/starter/coroutine/CommonScope.kt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tools/intellij.tools.ide.starter/src/com/intellij/ide/starter/coroutine/CommonScope.kt b/tools/intellij.tools.ide.starter/src/com/intellij/ide/starter/coroutine/CommonScope.kt index e3eb53dabaf3..ecc38dc6a770 100644 --- a/tools/intellij.tools.ide.starter/src/com/intellij/ide/starter/coroutine/CommonScope.kt +++ b/tools/intellij.tools.ide.starter/src/com/intellij/ide/starter/coroutine/CommonScope.kt @@ -52,12 +52,6 @@ object CommonScope { */ val perClassSupervisorScope = CoroutineScope(SupervisorJob() + Dispatchers.IO + CoroutineName("Test class's supervisor scope")) - /** - * In case of unhandled exception in child coroutines, all the coroutines tree (parents and other branches) will be canceled. - * In most scenarios you don't need that behavior. - */ - val simpleScope = CoroutineScope(Job() + Dispatchers.IO + CoroutineName("Simple scope")) - var scopeForProcesses: CoroutineScope = perClassSupervisorScope private set