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.exit(0)
}
@@ -0,0 +1,6 @@
import kotlin.system.exitProcess
// WITH_RUNTIME
fun test() {
exitProcess(0)
}