From b16cb882632442f03087e75a0e28093aee956596 Mon Sep 17 00:00:00 2001 From: Anton Lobov Date: Tue, 10 Sep 2019 10:22:54 +0200 Subject: [PATCH] make JsonSchemaCatalogExclusion a stable API, and update the doc GitOrigin-RevId: 3903eb505ccda51c41f02191ce5c669ba050e240 --- .../jsonSchema/remote/JsonSchemaCatalogExclusion.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/json/src/com/jetbrains/jsonSchema/remote/JsonSchemaCatalogExclusion.java b/json/src/com/jetbrains/jsonSchema/remote/JsonSchemaCatalogExclusion.java index f5ec8fa58226..9ca308f704a0 100644 --- a/json/src/com/jetbrains/jsonSchema/remote/JsonSchemaCatalogExclusion.java +++ b/json/src/com/jetbrains/jsonSchema/remote/JsonSchemaCatalogExclusion.java @@ -7,12 +7,9 @@ import org.jetbrains.annotations.ApiStatus; import org.jetbrains.annotations.NotNull; /** - * Disables JSON schema download from schema store for particular files. - * Not intended to be used except to suppress JSON schema for JSCS + * Disables applying schemastore.org JSON schema mappings for particular files. */ -@ApiStatus.Experimental public interface JsonSchemaCatalogExclusion { - ExtensionPointName EP_NAME = ExtensionPointName.create("com.intellij.json.catalog.exclusion"); boolean isExcluded(@NotNull VirtualFile file);