Java: improve javac quirks inspection texts (IJPF-CR-15669)

GitOrigin-RevId: fa038ac62b8f9e0a4fd56a483578741a353e0886
This commit is contained in:
Bas Leijdekkers
2023-11-29 12:09:01 +01:00
committed by intellij-monorepo-bot
parent 64eda78071
commit a50138d2c8
4 changed files with 11 additions and 11 deletions

View File

@@ -1,3 +1,3 @@
class A<T extends <warning descr="Forward reference may cause compilation error in some Javac versions (e.g. JDK 5 and JDK 6)">S</warning>, S> {
class A<T extends <warning descr="Forward references may cause compilation errors when using older javac versions (for example JDK 5 and JDK 6)">S</warning>, S> {
T t;
}