[java-inspections] Add quotes to annotations in inspection messages

GitOrigin-RevId: a2d102bb75c6f0f213cfe79928909f8501be6ca7
This commit is contained in:
Bart van Helvert
2022-08-01 15:53:33 +02:00
committed by intellij-monorepo-bot
parent 9ee8313ff0
commit 2a86552363
52 changed files with 55 additions and 55 deletions

View File

@@ -1,4 +1,4 @@
// "Annotate annotation 'Test' as @Retention(RetentionPolicy.RUNTIME)" "true-preview"
// "Annotate annotation 'Test' as '@Retention(RetentionPolicy.RUNTIME)'" "true-preview"
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

View File

@@ -1,4 +1,4 @@
// "Annotate annotation 'Test' as @Retention(RetentionPolicy.RUNTIME)" "true-preview"
// "Annotate annotation 'Test' as '@Retention(RetentionPolicy.RUNTIME)'" "true-preview"
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

View File

@@ -1,4 +1,4 @@
// "Annotate annotation 'Test' as @Retention(RetentionPolicy.RUNTIME)" "true-preview"
// "Annotate annotation 'Test' as '@Retention(RetentionPolicy.RUNTIME)'" "true-preview"
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

View File

@@ -1,4 +1,4 @@
// "Annotate annotation 'NotNull' as @Retention(RetentionPolicy.RUNTIME)" "false"
// "Annotate annotation 'NotNull' as '@Retention(RetentionPolicy.RUNTIME)'" "false"
import org.jetbrains.annotations.NotNull;
import java.lang.reflect.Method;

View File

@@ -1,4 +1,4 @@
// "Annotate annotation 'Test' as @Retention(RetentionPolicy.RUNTIME)" "true-preview"
// "Annotate annotation 'Test' as '@Retention(RetentionPolicy.RUNTIME)'" "true-preview"
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
import java.lang.reflect.Method;

View File

@@ -1,4 +1,4 @@
// "Annotate annotation 'Subst' as @Retention(RetentionPolicy.RUNTIME)" "false"
// "Annotate annotation 'Subst' as '@Retention(RetentionPolicy.RUNTIME)'" "false"
import org.intellij.lang.annotations.Subst;
import java.lang.reflect.Method;