[platform] API cleanup: remove unused deprecated CheckboxTreeBase.NodeState enum (IJPL-503)

It's moved to RiderInspectionsConfigurable, which was the only user of this API.

GitOrigin-RevId: a57fdb3c13c0104e06b6331c9e1122e3b0e7dbcc
This commit is contained in:
Nikolay Chashnikov
2024-05-10 09:25:15 +02:00
committed by intellij-monorepo-bot
parent 8b83a30705
commit a89fee8bd5
2 changed files with 0 additions and 16 deletions

View File

@@ -6222,13 +6222,6 @@ c:com.intellij.ui.CheckboxTreeBase$CheckboxTreeCellRendererBase
- getCheckbox():javax.swing.JCheckBox
- getTextRenderer():com.intellij.ui.ColoredTreeCellRenderer
- f:getTreeCellRendererComponent(javax.swing.JTree,java.lang.Object,Z,Z,Z,I,Z):java.awt.Component
e:com.intellij.ui.CheckboxTreeBase$NodeState
- java.lang.Enum
- sf:CLEAR:com.intellij.ui.CheckboxTreeBase$NodeState
- sf:FULL:com.intellij.ui.CheckboxTreeBase$NodeState
- sf:PARTIAL:com.intellij.ui.CheckboxTreeBase$NodeState
- s:valueOf(java.lang.String):com.intellij.ui.CheckboxTreeBase$NodeState
- s:values():com.intellij.ui.CheckboxTreeBase$NodeState[]
c:com.intellij.ui.CheckboxTreeHelper
- sf:DEFAULT_POLICY:com.intellij.ui.CheckboxTreeBase$CheckPolicy
- <init>(com.intellij.ui.CheckboxTreeBase$CheckPolicy,com.intellij.util.EventDispatcher):V

View File

@@ -227,15 +227,6 @@ public class CheckboxTreeBase extends Tree {
}
}
/**
* @see State
* @deprecated Don't use this enum. Left for API compatibility.
*/
@Deprecated(forRemoval = true)
public enum NodeState {
FULL, CLEAR, PARTIAL
}
public static class CheckPolicy {
final boolean checkChildrenWithCheckedParent;
final boolean uncheckChildrenWithUncheckedParent;