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.
This commit is contained in:
Sergei Tachenov 2022-12-01 19:26:15 +02:00 committed by GitHub
parent 09bb4b7d8d
commit 28924607af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,6 +70,9 @@ NOTE: Entries not starting with code quotes (`name`) can be added to document no
### 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.