Files
openide/java/java-tests/testData/refactoring/refactorThis/InheritanceToDelegationOutsideDeclaration.java
Alexandr Suhinin 675afe2194 IDEA-258710 refactor this: better filtering for "Replace Inheritance with Delegate"
GitOrigin-RevId: 5af3e8f3e63d071513778759e5787fa96f89665a
2020-12-30 15:56:02 +00:00

7 lines
100 B
Java

interface A { }
class B implements A {
public Str<caret>ing test() {
return "42";
}
}