mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 21:55:01 +07:00
include all constructor candidates to calculate change signature fix (IDEA-128891)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
// "<html> Change signature of X(<b>String</b>)</html>" "true"
|
||||
class X {
|
||||
X(Integer i) {}
|
||||
X(String s) {}
|
||||
|
||||
public static void main(String[] args) {
|
||||
new X("");
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
// "<html> Change signature of X(<b>String</b>)</html>" "true"
|
||||
class X {
|
||||
X(Integer i) {}
|
||||
X() {}
|
||||
|
||||
public static void main(String[] args) {
|
||||
new X("<caret>");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user