mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
inline superclass: process default/implicit constructors (IDEADEV-41326)
This commit is contained in:
@@ -2,8 +2,10 @@ class Test {
|
||||
String s;
|
||||
|
||||
Test(String s){
|
||||
super(s);
|
||||
System.out.println("hello");
|
||||
if (s != null) {
|
||||
this.s = s;
|
||||
}
|
||||
System.out.println("hello");
|
||||
}
|
||||
|
||||
void foo() {
|
||||
|
||||
Reference in New Issue
Block a user