intellij-sdk-code-samples/reference_guide/api_changes_list_2023.md
Sergei Tachenov 28924607af
Add SimpleNode.doUpdate() method removal (#908)
As a part of IDEA-307083 (Rework PresentableNodeDescriptor/SimpleNode update logic), it was needed to move
away from doUpdate() modifying the object's state directly, so a new parameter was needed.
2022-12-01 18:26:15 +01:00

5.1 KiB

Incompatible Changes in IntelliJ Platform and Plugins API 2023.*

2023.1

IntelliJ Platform 2023.1

com.intellij.ui.treeStructure.SimpleNode.doUpdate() method removed
It was replaced by doUpdate(PresentationData) which should now only modify the state of its parameter.
com.intellij.openapi.externalSystem.view.ExternalSystemNode.setNameAndTooltip(String, String) method removed
The new setNameAndTooltip(PresentationData, String, String) overload should be used instead.
com.intellij.openapi.externalSystem.view.ExternalSystemNode.setNameAndTooltip(String, String, String) method removed
The new setNameAndTooltip(PresentationData, String, String, String) overload should be used instead.
com.intellij.openapi.externalSystem.view.ExternalSystemNode.setNameAndTooltip(String, String, SimpleTextAttributes) method removed
The new setNameAndTooltip(PresentationData, String, String, SimpleTextAttributes) overload should be used instead.