Improved logic of finding conflicts for refactoring actions

This commit is contained in:
Stanislav Erokhin
2015-08-25 20:02:28 +03:00
parent 9a435e332f
commit aaebe70342
8 changed files with 25 additions and 24 deletions
@@ -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
}