From ab63e63ae601f46b83f651c8e26ee904d715f07a Mon Sep 17 00:00:00 2001 From: Nikita Pavlenko Date: Fri, 18 Oct 2024 13:14:04 +0200 Subject: [PATCH] PY-74366 Jupyter/RemoteDev (feat): In Remote Dev in notebooks, tables will be displayed in as html-table. Cells execution state will be synchronized. (cherry picked from commit 853b332b230ffdaf6da890f105811171fd84a4ca) (cherry picked from commit 059b813db573293afa210cd39dcc76c7d081a4b7) IJ-CR-147319 GitOrigin-RevId: 177d11260385a3b1dc514c39a52701f585507647 --- .../visualization/NotebookIntervalPointerConcurrentMap.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/visualization/src/com/intellij/notebooks/visualization/NotebookIntervalPointerConcurrentMap.kt b/notebooks/visualization/src/com/intellij/notebooks/visualization/NotebookIntervalPointerConcurrentMap.kt index 89ff0bb679af..b68beb24c2e0 100644 --- a/notebooks/visualization/src/com/intellij/notebooks/visualization/NotebookIntervalPointerConcurrentMap.kt +++ b/notebooks/visualization/src/com/intellij/notebooks/visualization/NotebookIntervalPointerConcurrentMap.kt @@ -69,7 +69,7 @@ class NotebookIntervalPointerConcurrentMap(messageBus: MessageBus, parent * see [java.util.concurrent.ConcurrentHashMap.CollectionView.removeAll] */ fun removeAll(cellPointers: Collection): Boolean { - return mapReference.get()?.keys?.removeAll(cellPointers) ?: false + return mapReference.get()?.keys?.removeAll(cellPointers) == true } override fun dispose() {