From 421d858c8e17a010bd995d3cd5b103df37a18909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Tue, 6 Sep 2022 10:45:29 +0200 Subject: [PATCH] custom language tutorial: clarify SimpleFileTypeFactory alternative --- .../java/org/intellij/sdk/language/SimpleFileTypeFactory.java | 4 +++- simple_language_plugin/src/main/resources/META-INF/plugin.xml | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/simple_language_plugin/src/main/java/org/intellij/sdk/language/SimpleFileTypeFactory.java b/simple_language_plugin/src/main/java/org/intellij/sdk/language/SimpleFileTypeFactory.java index 39f907a7c..9ddff317c 100644 --- a/simple_language_plugin/src/main/java/org/intellij/sdk/language/SimpleFileTypeFactory.java +++ b/simple_language_plugin/src/main/java/org/intellij/sdk/language/SimpleFileTypeFactory.java @@ -7,8 +7,10 @@ import com.intellij.openapi.fileTypes.FileTypeFactory; import org.jetbrains.annotations.NotNull; /** - * Note: This class is only used with the fileTypeFactory extension point + * TODO: This class is only used with the {@code com.intellij.fileTypeFactory} extension point * for versions of the IntelliJ Platform prior to v2019.2. + * + * @see Custom Language Tutorial */ @SuppressWarnings("deprecation") public class SimpleFileTypeFactory extends FileTypeFactory { diff --git a/simple_language_plugin/src/main/resources/META-INF/plugin.xml b/simple_language_plugin/src/main/resources/META-INF/plugin.xml index 174c97ca1..674507e99 100644 --- a/simple_language_plugin/src/main/resources/META-INF/plugin.xml +++ b/simple_language_plugin/src/main/resources/META-INF/plugin.xml @@ -42,6 +42,8 @@