mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
inline superclass: preserve superclass extends/implements list (IDEA-69339)
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
|
||||
interface Int {}
|
||||
|
||||
class Dummy {}
|
||||
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
class Test extends Dummy implements Int {
|
||||
Test(){}
|
||||
|
||||
public void main() {}
|
||||
}
|
||||
|
||||
class U {
|
||||
public static void main(String[] args) {
|
||||
new Test().main();
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
|
||||
interface Int {}
|
||||
|
||||
class Dummy {}
|
||||
|
||||
public class Super extends Dummy implements Int {
|
||||
public void main() {}
|
||||
}
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
class Test extends Super{
|
||||
Test(){}
|
||||
}
|
||||
|
||||
class U {
|
||||
public static void main(String[] args) {
|
||||
new Test().main();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user