[java] IDEA-365068 FUS: Java Exception file template logged as third.party in statistic events

(cherry picked from commit a1c205f3d5fbabec1b606c82fa33aa1c5d12ef66)
IJ-CR-152109

GitOrigin-RevId: 5cd6886bd3ed3e3fcb033947b07039d93b8214e9
This commit is contained in:
Yuriy Artamonov
2024-12-21 07:49:47 +01:00
committed by intellij-monorepo-bot
parent ad9bc79cb7
commit 1da8465556
2 changed files with 2 additions and 1 deletions

View File

@@ -907,6 +907,7 @@
<internalFileTemplate name="Enum"/>
<internalFileTemplate name="Record"/>
<internalFileTemplate name="AnnotationType" subject="@interface"/>
<internalFileTemplate name="Exception"/>
<internalFileTemplate name="package-info"/>
<internalFileTemplate name="module-info"/>

View File

@@ -33,7 +33,7 @@ public final class JavaTemplateUtil {
public static final String[] INTERNAL_CLASS_TEMPLATES = {
INTERNAL_CLASS_TEMPLATE_NAME, INTERNAL_INTERFACE_TEMPLATE_NAME, INTERNAL_ANNOTATION_TYPE_TEMPLATE_NAME, INTERNAL_ENUM_TEMPLATE_NAME,
INTERNAL_RECORD_TEMPLATE_NAME};
INTERNAL_RECORD_TEMPLATE_NAME, INTERNAL_EXCEPTION_TYPE_TEMPLATE_NAME};
public static final String INTERNAL_PACKAGE_INFO_TEMPLATE_NAME = "package-info";
public static final String INTERNAL_MODULE_INFO_TEMPLATE_NAME = "module-info";