KT-5419 J2K: convert string concatenation to string template + implemented corresponding inspection

#KT-5419 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-06-10 22:36:05 +03:00
parent ab97d76fed
commit bf014fc1c5
16 changed files with 215 additions and 47 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
class A {
jvmOverloads fun foo(i: Int, c: Char = 'a', s: String = "") {
println("foo" + i + c + s)
println("foo$i$c$s")
}
jvmOverloads fun bar(s: String? = null): Int {