Update api_changes_list_2020.md

Added note about org.jetbrains.jps.incremental.ModuleLevelBuilder#getCompilableFileExtensions.
This commit is contained in:
Nikolay Chashnikov 2020-01-23 13:17:26 +03:00 committed by GitHub
parent 4ff3f8714a
commit 3d726685ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,6 +69,9 @@ Please see [Incompatible API Changes](/reference_guide/api_changes_list.md) on h
`com.intellij.compiler.ant` package removed
: 'Generate Ant build' functionality is removed from the IDE. Delete the code extending this or replace it with a dependency on the `generate-ant` plugin.
`org.jetbrains.jps.incremental.ModuleLevelBuilder.getCompilableFileExtensions` marked abstract
: Implement it in `ModuleLevelBuilder`'s implementation.
`com.intellij.codeInsight.TargetElementUtilBase` class removed
: Use `com.intellij.codeInsight.TargetElementUtil` instead.
@ -109,4 +112,4 @@ Please see [Incompatible API Changes](/reference_guide/api_changes_list.md) on h
: This may break source-compatibility with inheritors written in Kotlin if they declare parameter type as nullable.
Java code migrated to use `TYPE_USE` nullability annotations
: Due to some problems in Kotlin compiler existing Kotlin code might become incompilable in rare cases if a method written in Java returning an array and annotated as `@Nullable` or `@NotNull` is used or overridden.
: Due to some problems in Kotlin compiler existing Kotlin code might become incompilable in rare cases if a method written in Java returning an array and annotated as `@Nullable` or `@NotNull` is used or overridden.