mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
inline superclass refactoring: allow to collapse only one inheritance (IDEA-93319)
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
class Test {
|
||||
public void context() {
|
||||
method();
|
||||
}
|
||||
|
||||
public void method() {}
|
||||
}
|
||||
|
||||
class Test1 {
|
||||
public void method() {}
|
||||
}
|
||||
|
||||
class U {
|
||||
Test t = new Test1();
|
||||
}
|
||||
Reference in New Issue
Block a user