Files
Tagir Valeev 37c03b015c [java-intentions] IDEA-363734 "Make Xxx impelent Yyy" quick fix inserts @NotNull
GitOrigin-RevId: 4e9a3f94cf1aedadd0b2c4699e168ccb3be0e405
2024-12-03 14:25:33 +00:00

13 lines
202 B
Java

// "Make 'a' implement 'java.lang.Runnable'" "true-preview"
class a implements Runnable {
void f(Runnable r) {
f(this);
}
@Override
public void run() {
<caret>
}
}