mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
create constructor matching super: insert braces when no present (IDEA-77194)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
// "Create constructor matching super" "true"
|
||||
public class Test<T> {
|
||||
Test (T t) {}
|
||||
}
|
||||
|
||||
class Derived extends Test<String> {
|
||||
Derived(String s) {
|
||||
super(s);
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
// "Create constructor matching super" "true"
|
||||
public class Test<T> {
|
||||
Test (T t) {}
|
||||
}
|
||||
|
||||
class <caret>Derived extends Test<String>
|
||||
Reference in New Issue
Block a user