From 08d19cbf6baf947d9b25e86e0329d36c5b821f79 Mon Sep 17 00:00:00 2001 From: Vladislav Artiukhov Date: Mon, 7 Oct 2024 14:37:51 +0200 Subject: [PATCH] feat: add TODO to `ToolUtils` about a potential bug The bug is reflected in the issue #375. --- .../kotlin/org/jetbrains/research/testspark/tools/ToolUtils.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/org/jetbrains/research/testspark/tools/ToolUtils.kt b/src/main/kotlin/org/jetbrains/research/testspark/tools/ToolUtils.kt index 99e1fc4fa..fb8d93aca 100644 --- a/src/main/kotlin/org/jetbrains/research/testspark/tools/ToolUtils.kt +++ b/src/main/kotlin/org/jetbrains/research/testspark/tools/ToolUtils.kt @@ -114,6 +114,7 @@ object ToolUtils { fun isProcessCanceled(indicator: CustomProgressIndicator): Boolean { if (indicator.isCanceled()) { + // TODO: we must not stop this indicator! cancellation MAY imply stoppage indicator.stop() return true }