From bdba2be1827aab15d567946963f89b395e318305 Mon Sep 17 00:00:00 2001 From: JohnHake Date: Mon, 22 Apr 2019 15:05:35 -0700 Subject: [PATCH] Deleted shortName and provider classes. --- .../resources/META-INF/plugin.xml | 10 ++++------ .../ComparingReferencesProvider.java | 12 ------------ .../resources/META-INF/plugin.xml | 2 +- inspection/resources/META-INF/plugin.xml | 10 ++++------ .../inspection/DemoInspectionToolProvider.java | 14 -------------- 5 files changed, 9 insertions(+), 39 deletions(-) delete mode 100644 comparing_references_inspection/source/com/intellij/codeInspection/ComparingReferencesProvider.java delete mode 100644 inspection/src/com/intellij/tutorials/inspection/DemoInspectionToolProvider.java diff --git a/comparing_references_inspection/resources/META-INF/plugin.xml b/comparing_references_inspection/resources/META-INF/plugin.xml index 8b98734f3..6823355cb 100644 --- a/comparing_references_inspection/resources/META-INF/plugin.xml +++ b/comparing_references_inspection/resources/META-INF/plugin.xml @@ -29,7 +29,7 @@ - IntelliJ Platform SDK + IntelliJ Platform SDK @@ -40,9 +40,8 @@ @see intellij.platform.resources.LangExtensionPoints @see com.intellij.codeInspection.InspectionProfileEntry Attributes: - language= Defines the type of file (in this case java source) for this inspection. Not localized - shortName= The default name for the inspection, e.g. the default - for name for the description file "ComparingReferences.html". Not localized. + language= Language ID + shortName= Not specified, will be computed by the underlying implementation classes. displayName= The string to be shown in the Preferences | Editor | Inspections panel The displayName gets registered to identify this inspection. Can be localized using key= and bundle= attributes instead. @@ -55,10 +54,9 @@ enabledByDefault= Inspection state when Inspections panel is created. level= The default level of error found by this inspection, e.g. INFO, ERROR, etc. @see com.intellij.codeHighlighting.HighlightDisplayLevel - inplementationClass= package.className of implementation + inplementationClass= FQN of inspection implementation --> - IntelliJ Platform SDK + IntelliJ Platform SDK diff --git a/inspection/resources/META-INF/plugin.xml b/inspection/resources/META-INF/plugin.xml index c52688c36..42d4becf3 100644 --- a/inspection/resources/META-INF/plugin.xml +++ b/inspection/resources/META-INF/plugin.xml @@ -29,7 +29,7 @@ - IntelliJ Platform SDK + IntelliJ Platform SDK @@ -40,9 +40,8 @@ @see intellij.platform.resources.LangExtensionPoints @see com.intellij.codeInspection.InspectionProfileEntry Attributes: - language= Defines the type of file (in this case java source) for this inspection. Not localized - shortName= The default name for the inspection, e.g. the default - for name for the description file "DemoCode.html". Not localized. + language= Language ID + shortName= Not specified, will be computed by the underlying implementation classes. displayName= The string to be shown in the Preferences | Editor | Inspections panel The displayName gets registered to identify this inspection. Can be localized using key= and bundle= attributes instead. @@ -52,10 +51,9 @@ enabledByDefault= Inspection state when Inspections panel is created. level= The default level of error found by this inspection, e.g. INFO, ERROR, etc. @see com.intellij.codeHighlighting.HighlightDisplayLevel - inplementationClass= package.className of inspection implementation + inplementationClass= FQN of inspection implementation -->