Propose convert to string template as inspection more frequent

This commit is contained in:
Simon Ogorodnik
2018-02-22 15:10:47 +03:00
committed by Stanislav Erokhin
parent 4c15642e2c
commit 57e47d1830
11 changed files with 60 additions and 30 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
internal class A {
@JvmOverloads
fun foo(i: Int, c: Char = 'a', s: String = "") {
println("foo" + i + c + s)
println("foo$i$c$s")
}
@JvmOverloads
@@ -9,4 +9,4 @@ internal class A {
println("s = " + s!!)
return 0
}
}
}