|
|
|
@ -136,8 +136,10 @@ class ComputableGroup(name: String, conditions: List<QueryCondition>, stats: Lis |
|
|
|
this._sessionSets = null |
|
|
|
this._sessionSets = null |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
val isEmpty: Boolean = this._computables?.isEmpty() ?: true |
|
|
|
val isEmpty: Boolean |
|
|
|
|
|
|
|
get() { |
|
|
|
|
|
|
|
return this._computables?.isEmpty() ?: true |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
class ComputedResults(group: ComputableGroup) { |
|
|
|
class ComputedResults(group: ComputableGroup) { |
|
|
|
|