[platform] IDEA-382389 deprecate for removal: ProblemDescriptorUtil.LOC_REFERENCE

Also add some Javadoc.

GitOrigin-RevId: 5c70094f085babf7c526fcbb4c83b0b881bd6716
This commit is contained in:
Bartek Pacia
2025-11-26 13:57:42 +00:00
committed by intellij-monorepo-bot
parent 74c410ce67
commit 3899003c4e
@@ -37,7 +37,15 @@ public final class ProblemDescriptorUtil {
static final int APPEND_LINE_NUMBER = 0x00000001;
public static final int TRIM_AT_TREE_END = 0x00000004;
/**
* @see CommonProblemDescriptor#getDescriptionTemplate
* @deprecated See IDEA-382389 for discussion and reasons for removal.
*/
@Deprecated(forRemoval = true)
public static final @NonNls String LOC_REFERENCE = "#loc";
/**
* @see CommonProblemDescriptor#getDescriptionTemplate
*/
public static final @NonNls String REF_REFERENCE = "#ref";
@MagicConstant(flags = {NONE, APPEND_LINE_NUMBER, TRIM_AT_TREE_END})