Files
openide/java/java-tests/testData/inspection/nullableProblems/RemoveMethodAnnotationRemovesOverriders_after.java
Nikolay Chashnikov 9c66641799 [java] remove redundant import when "Remove annotation" quick fix is applied (IDEA-288488)
GitOrigin-RevId: 562cf18eafa636a761c75ae3e9630bdab3eff760
2022-02-11 09:25:51 +00:00

10 lines
121 B
Java

interface Foo {
long getTime();
}
class Bar implements Foo {
@Override
public long getTime() {
return 0;
}
}