Improved logic of finding conflicts for refactoring actions
This commit is contained in:
Vendored
+1
-1
@@ -9,7 +9,7 @@ class A {
|
||||
fun B.foo() = i(this@A, this)
|
||||
}
|
||||
|
||||
private fun i(a1: A, b: B) = a1.a + b.b
|
||||
private fun i(a1: A, b1: B) = a1.a + b1.b
|
||||
|
||||
class B {
|
||||
val b = 1
|
||||
|
||||
+2
-2
@@ -11,6 +11,6 @@ class Y(val y: Int) {
|
||||
}
|
||||
}
|
||||
|
||||
private fun __dummyTestFun__(x: X, y1: Y) {
|
||||
x.`x`plus y1.y
|
||||
private fun __dummyTestFun__(x1: X, y1: Y) {
|
||||
x1.`x`plus y1.y
|
||||
}
|
||||
Reference in New Issue
Block a user