Fix platform declaration clash
This commit is contained in:
parent
c93fa7bb7a
commit
2d1c9184f4
@ -89,12 +89,12 @@ open class MatterEntanglerRecipe(
|
|||||||
return ingredients.ingredients()
|
return ingredients.ingredients()
|
||||||
}
|
}
|
||||||
|
|
||||||
private val isIncomplete by lazy(LazyThreadSafetyMode.PUBLICATION) {
|
private val _isIncomplete by lazy(LazyThreadSafetyMode.PUBLICATION) {
|
||||||
result.isEmpty || ingredients.isIncomplete
|
result.isEmpty || ingredients.isIncomplete
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun isIncomplete(): Boolean {
|
override fun isIncomplete(): Boolean {
|
||||||
return isIncomplete
|
return _isIncomplete
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun isSpecial(): Boolean {
|
override fun isSpecial(): Boolean {
|
||||||
|
Loading…
Reference in New Issue
Block a user