[Gradle] Remove deprecated experimental annotation methods & properties

#KT-47763 Fixed
This commit is contained in:
Alexander Likhachev
2022-02-15 13:18:41 +03:00
committed by Space
parent 0bf6f1eb83
commit aba495f63c
9 changed files with 5 additions and 42 deletions
@@ -18,11 +18,5 @@ interface LanguageSettingsBuilder : LanguageSettings {
override val enabledLanguageFeatures: Set<String>
@Deprecated("Unsupported and will be removed in next major releases", replaceWith = ReplaceWith("optIn(name)"))
fun useExperimentalAnnotation(name: String)
fun optIn(annotationName: String)
@Deprecated("Unsupported and will be removed in next major releases", replaceWith = ReplaceWith("optInAnnotationsInUse"))
override val experimentalAnnotationsInUse: Set<String>
}