Move: Update test data for tests with conflicts
Check refactoring result for the case when conflicts are ignored. Fix move destination when moving to another source root
This commit is contained in:
+3
-3
@@ -1,9 +1,9 @@
|
||||
public class A {
|
||||
public static void foo(String s) {
|
||||
System.out.println(s)
|
||||
}
|
||||
}
|
||||
|
||||
public class B {
|
||||
|
||||
private static void foo(String s) {
|
||||
System.out.println(s)
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,3 +1,3 @@
|
||||
fun bar(s: String) {
|
||||
A.foo(s)
|
||||
B.foo(s)
|
||||
}
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
import A.*
|
||||
|
||||
fun bar(s: String) {
|
||||
foo(s)
|
||||
B.foo(s)
|
||||
}
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
import A.foo as foofoo
|
||||
import B.foo as foofoo
|
||||
|
||||
fun bar(s: String) {
|
||||
foofoo(s)
|
||||
|
||||
Reference in New Issue
Block a user