Change signature does not make doubled refactoring for java usages

Fixed #KT-22170
This commit is contained in:
Igor Yakovlev
2020-06-30 14:58:19 +03:00
parent 7b9fad00a1
commit 4707f4fc3f
6 changed files with 37 additions and 1 deletions
@@ -0,0 +1,6 @@
public class JavaTest {
public static void test() {
Test.Companion.<caret>fooStatic("First", 2);
Test.fooStatic("First", 2);
}
}