mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 18:13:36 +07:00
GitOrigin-RevId: b68eb82bff5746b8671e665f9efe0c4cb8a538ea
8 lines
331 B
Java
8 lines
331 B
Java
import com.intellij.openapi.application.Experiments;
|
|
|
|
public class ExperimentalFeatureId {
|
|
public static void main(String[] args) {
|
|
Experiments.getInstance().isFeatureEnabled("my.feature.id");
|
|
Experiments.getInstance().isFeatureEnabled("<error descr="Cannot resolve feature 'INVALID_VALUE'">INVALID_VALUE</error>");
|
|
}
|
|
} |