notnull changes

notnull changes explanation
This commit is contained in:
Alexey Kudravtsev 2018-09-11 13:53:15 +03:00 committed by GitHub
parent 827a0e60bc
commit 1c030e29d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,13 @@ See the note on how to document new problems on the main page reference_guide/ap
| Change | How to deal with it | | Change | How to deal with it |
|---------|---------------------| |---------|---------------------|
| `com.intellij.openapi.externalSystem.action.ExternalSystemAction#isEnabled` method `AnActionEvent` parameter marked @NotNull | remove `?`s in your Kotlin code |
| `com.intellij.openapi.externalSystem.action.ExternalSystemAction#isVisible` method `AnActionEvent` parameter marked @NotNull | remove `?`s in your Kotlin code |
| `com.intellij.openapi.actionSystem.AnAction#actionPerformed` method `AnActionEvent` parameter marked @NotNull | remove `?`s in your Kotlin code |
| `com.intellij.openapi.actionSystem.DataContext#getData` method `dataId` parameter marked @NotNull | remove `?`s in your Kotlin code |
| `com.intellij.openapi.actionSystem.ToggleAction#isSelected` method `AnActionEvent` parameter marked @NotNull | remove `?`s in your Kotlin code |
| `com.intellij.openapi.actionSystem.ToggleAction#setSelected` method `AnActionEvent` parameter marked @NotNull | remove `?`s in your Kotlin code |
| `com.intellij.openapi.actionSystem.DataProvider#getData` method `dataId` parameter marked @NotNull | remove `?`s in your Kotlin code |
| `com.intellij.psi.meta.PsiMetaData.getDependences` method removed | Use `com.intellij.psi.meta.PsiMetaData.getDependencies` | | `com.intellij.psi.meta.PsiMetaData.getDependences` method removed | Use `com.intellij.psi.meta.PsiMetaData.getDependencies` |
## Changes in IntelliJ Platform 2018.2 ## Changes in IntelliJ Platform 2018.2