<@U0QBCLV62> Any interest in me adding the followi...
# gradle
j
@bamboo Any interest in me adding the following to the list of default closures that are in GSK by default?
Copy code
open class NoArgKotlinClosure<V : Any>(
    val function : () -> V?,
    owner: Any? = null,
    thisObject: Any? = null) : groovy.lang.Closure<V?>(owner, thisObject) {

    @Suppress("unused") // to be called dynamically by Groovy
    fun doCall() : V? = function()
}