Fixed other parameter references broken in new parameter values in conventional Change Signature
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
fun <caret>foo(p1: Int, p2: Int) {
|
||||
}
|
||||
|
||||
fun bar() {
|
||||
foo(1, 1 * 1)
|
||||
foo(2, 2 * 2)
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
fun <caret>foo(p1: Int) {
|
||||
}
|
||||
|
||||
fun bar() {
|
||||
foo(1)
|
||||
foo(2)
|
||||
}
|
||||
Reference in New Issue
Block a user