From d39949c4ca895e0956e0ab2816208ea0071b792b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Tue, 29 Apr 2025 17:05:16 +0200 Subject: [PATCH] annotator.md: cleanup old "since..." note --- topics/tutorials/custom_language_support/annotator.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/topics/tutorials/custom_language_support/annotator.md b/topics/tutorials/custom_language_support/annotator.md index 60d83c719..c7aaf4e88 100644 --- a/topics/tutorials/custom_language_support/annotator.md +++ b/topics/tutorials/custom_language_support/annotator.md @@ -58,11 +58,7 @@ Then, declare the dependency in [plugin.xml](plugin_configuration_file.md) The [`SimpleAnnotator`](%gh-sdk-samples-master%/simple_language_plugin/src/main/java/org/intellij/sdk/language/SimpleAnnotator.java) subclasses [`Annotator`](%gh-ic%/platform/analysis-api/src/com/intellij/lang/annotation/Annotator.java). Consider a literal string that starts with "simple:" as a prefix of a Simple Language key. It isn't part of the Simple Language, but it is a useful convention for detecting Simple Language keys embedded as string literals in other languages, like Java. -Annotate the `simple:key` literal expression, and differentiate between a well-formed vs. an unresolved property. - -> The use of new `AnnotationHolder` syntax starting 2020.2, which uses the builder format. -> -{style="note"} +Annotate the `simple:key` literal expression and differentiate between a well-formed vs. an unresolved property. ```java ```