Hidden some unused fields in PopupListElementRenderer

GitOrigin-RevId: e000cb50e8e0a6ec01e72bcc9f098278b3f0bca3
This commit is contained in:
Pavel Porvatov
2024-10-10 11:46:44 +02:00
committed by intellij-monorepo-bot
parent 52d76e8ac4
commit ff65e17c6c
2 changed files with 3 additions and 6 deletions

View File

@@ -16823,14 +16823,11 @@ f:com.intellij.ui.popup.list.ListPopupWrapper$Companion
c:com.intellij.ui.popup.list.PopupListElementRenderer
- com.intellij.ui.popup.list.GroupedItemsListRenderer
- sf:CUSTOM_KEY_STROKE_TEXT:com.intellij.openapi.util.Key
- p:myButtonPane:javax.swing.JPanel
- p:myButtonSeparator:javax.swing.JComponent
- p:myIconBar:javax.swing.JComponent
- p:myIconLabel:javax.swing.JLabel
- p:myMainPane:javax.swing.JComponent
- p:myMnemonicLabel:javax.swing.JLabel
- pf:myPopup:com.intellij.ui.popup.list.ListPopupImpl
- p:mySecondaryTextLabel:javax.swing.JLabel
- <init>(com.intellij.ui.popup.list.ListPopupImpl):V
- ps:createButtonsSeparator():javax.swing.JComponent
- p:createIconBar():javax.swing.JComponent

View File

@@ -34,12 +34,12 @@ public class PopupListElementRenderer<E> extends GroupedItemsListRenderer<E> {
protected final ListPopupImpl myPopup;
private @Nullable JLabel myShortcutLabel;
protected @Nullable JLabel mySecondaryTextLabel;
private @Nullable JLabel mySecondaryTextLabel;
protected JLabel myMnemonicLabel;
protected JLabel myIconLabel;
protected JPanel myButtonPane;
protected JComponent myMainPane;
private JPanel myButtonPane;
private JComponent myMainPane;
protected JComponent myButtonSeparator;
protected JComponent myIconBar;