mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-29 09:47:50 +08:00
notnull changes
notnull changes explanation
This commit is contained in:
parent
827a0e60bc
commit
1c030e29d0
@ -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 |
|
||||
|---------|---------------------|
|
||||
| `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` |
|
||||
|
||||
## Changes in IntelliJ Platform 2018.2
|
||||
|
Loading…
x
Reference in New Issue
Block a user