mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
create constructor parameter should consider context (e.g.: type parameter name == some class name from java.lang)
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
// "Add constructor parameter" "true"
|
||||
class Test<Math> {
|
||||
final Math math;
|
||||
|
||||
Test(Math math) {
|
||||
this.math = math;
|
||||
}
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// "Add constructor parameter" "true"
|
||||
class Test<Math> {
|
||||
final Math ma<caret>th;
|
||||
}
|
||||
Reference in New Issue
Block a user