[java] better quick fix text (IDEA-353386)

GitOrigin-RevId: ebc64c441f2140181ad4e996005a45b19936b7d3
This commit is contained in:
Bas Leijdekkers
2024-05-13 16:27:05 +02:00
committed by intellij-monorepo-bot
parent 0a8f0ae1c8
commit 106130b6f8
5 changed files with 11 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
// "Make 'T' implement 'b'" "true-preview"
// "Make 'T' extend 'b'" "true-preview"
class a<T extends b<String>> {
void f(b<String> r, T t) {
r.g(t);

View File

@@ -1,4 +1,4 @@
// "Make 'T' implement 'b'" "true-preview"
// "Make 'T' extend 'b'" "true-preview"
class a<T> {
void f(b<String> r, T t) {
r.g(<caret>t);