Promote experimental APIs as stable

- HTML support and Kotlin support no more experimental
- The only left over experimental APIs are java preview features
This commit is contained in:
Andreas Dangel
2024-02-09 08:46:48 +01:00
parent 4ff00bfe66
commit 0d40878b0a
44 changed files with 120 additions and 140 deletions

View File

@ -4,7 +4,6 @@
package net.sourceforge.pmd.lang.kotlin;
import net.sourceforge.pmd.annotation.Experimental;
import net.sourceforge.pmd.cpd.CpdLexer;
import net.sourceforge.pmd.lang.LanguagePropertyBundle;
import net.sourceforge.pmd.lang.LanguageRegistry;
@ -13,10 +12,7 @@ import net.sourceforge.pmd.lang.kotlin.cpd.KotlinCpdLexer;
/**
* Language Module for Kotlin
*
* <p>Note: Kotlin support is considered an experimental feature. The AST structure might change.</p>
*/
@Experimental
public class KotlinLanguageModule extends SimpleLanguageModuleBase {
private static final String ID = "kotlin";