Skip to content

Commit

Permalink
fixed compilation with Kotlin M11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
juliuskunze committed Apr 14, 2015
1 parent 601dfa9 commit 1a55546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/KaraLib/src/kara/ApplicationConfig.kt
Expand Up @@ -32,7 +32,7 @@ public open class ApplicationConfig() : Config() {

/** Directories where publicly available files (like stylesheets, scripts, and images) will go. */
public val publicDirectories: List<String>
get() = tryGet("kara.publicDir")?.split(';') ?: emptyList<String>()
get() = tryGet("kara.publicDir")?.split(';')?.toList() ?: emptyList<String>()

public val routePackages: List<String>
get() = tryGet("kara.routePackages")?.split(',')?.toList()?.map { "${it.trim()}" }
Expand Down

0 comments on commit 1a55546

Please sign in to comment.