com.intellij.icons.AllIcons will be removed in IntelliJ Platform 2020.1. Where to find new?
Answered
Hello,
Can somebody help me with the next issue? We received an email from JetBrains with the next message:
"We have noticed that your plugin uses classes from com.intellij.icons.AllIcons, which are going to be removed in the upcoming IntelliJ Platform 2020.1 release.
Please set the ‘until’ version for this and earlier versions of your plugin to 193.*, and add the necessary changes for the versions of your plugin which should be compatible with 2020.1 version of the IDE(s)".
I'm trying to understand where to find new ones?
Thank you for any help!
Best regards,
Alexander.
Please sign in to leave a comment.
(1) com.intellij.icons.AllIcons will NOT be removed, but only some nested classes/fields marked as @ScheduledForRemoval
(2) Every icon marked as such has JavaDoc stating the replacement icon to use.
e.g for com.intellij.icons.AllIcons.Actions#Browser_externalJavaDoc
/** @deprecated to be removed in IDEA 2020 - use AllIcons.Actions.PreviousOccurence */
Please see also http://www.jetbrains.org/intellij/sdk/docs/reference_guide/api_changes_list.html on how to verify/check API compatibility in general.
Thank you, Yann!