mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 04:36:59 +07:00
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>");
|
|
}
|
|
} |