used string template instead of concatenation

This commit is contained in:
alexjuca
2020-08-19 07:59:12 +01:00
committed by Alexander Udalov
parent f88e492d11
commit 4794297640
@@ -127,10 +127,10 @@ object Main {
classpath.addPath(".") classpath.addPath(".")
} }
classpath.addPath(KOTLIN_HOME.toString() + "/lib/kotlin-stdlib.jar") classpath.addPath("$KOTLIN_HOME/lib/kotlin-stdlib.jar")
if (!noReflect) { if (!noReflect) {
classpath.addPath(KOTLIN_HOME.toString() + "/lib/kotlin-reflect.jar") classpath.addPath("$KOTLIN_HOME/lib/kotlin-reflect.jar")
} }
if (expression != null) { if (expression != null) {