api_changes_list_2023.md: BaseElementAtCaretIntentionAction, #2

This commit is contained in:
Yann Cébron 2023-08-22 17:14:37 +02:00
parent e92156f57f
commit e388ec8291

View File

@ -75,10 +75,10 @@ NOTE: Entries not starting with code quotes (`name`) can be added to document no
JsonPath library unbundled
: Bundle it [explicitly](https://youtrack.jetbrains.com/issue/IDEA-328219) with your plugin.
`com.intellij.codeInsight.intention.BaseElementAtCaretIntentionAction.isAvailable(Project, Editor, PsiElement)` method `Editor` parameter marked `@NotNull`
`com.intellij.codeInsight.intention.BaseElementAtCaretIntentionAction.isAvailable` method `Editor` parameter marked `@NotNull`
: This may break source-compatibility with inheritors written in Kotlin if they declare it as nullable.
`com.intellij.codeInsight.intention.BaseElementAtCaretIntentionAction.invoke(Project, Editor, PsiElement)` method `Editor` parameter marked `@NotNull`
`com.intellij.codeInsight.intention.BaseElementAtCaretIntentionAction.invoke` method `Editor` parameter marked `@NotNull`
: This may break source-compatibility with inheritors written in Kotlin if they declare it as nullable.
### Java Plugin 2023.3