Fix typo
This commit is contained in:
committed by
Vyacheslav Gerasimov
parent
5dc094d290
commit
a58a6290cc
@@ -31,7 +31,7 @@ plugins {
|
|||||||
`kotlin-dsl`
|
`kotlin-dsl`
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Project.getBooleanProperty(name: String): Boolean? = this.findProperty("intellijUltimateEnabled")?.let {
|
fun Project.getBooleanProperty(name: String): Boolean? = this.findProperty(name)?.let {
|
||||||
val v = it.toString()
|
val v = it.toString()
|
||||||
if (v.isBlank()) true
|
if (v.isBlank()) true
|
||||||
else v.toBoolean()
|
else v.toBoolean()
|
||||||
|
|||||||
Reference in New Issue
Block a user