Rename ReplaceJavaStaticMethodWithTopLevelFunctionInspection to ReplaceJavaStaticMethodWithKotlinAnalogInspection

This commit is contained in:
Dmitry Gridin
2019-04-11 13:15:01 +07:00
parent 23003c5d1a
commit b5b5723ec3
123 changed files with 83 additions and 83 deletions
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun test() {
<caret>System.out.print("foo")
}
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun test() {
print("foo")
}
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun test() {
<caret>System.out.println()
}
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun test() {
println()
}
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun test() {
System.out.println<caret>("foo")
}
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun test() {
println("foo")
}
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun test() {
System.out.println<caret>("foo").let { it }
}
@@ -0,0 +1,4 @@
// WITH_RUNTIME
fun test() {
println("foo").let { it }
}