Files
openide/java/java-tests/testData/inspection/nullableProblems/RemoveMethodAnnotationRemovesOverriders_after.java
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;
}
}