We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28a167c commit d1107c8Copy full SHA for d1107c8
interfaces/src/main/kotlin/com/noxcrew/interfaces/properties/LazyProperty.kt
@@ -114,7 +114,7 @@ public abstract class LazyProperty<T : Any>(
114
}
115
116
/** Returns the value of this property. */
117
- public suspend fun getValue(): T = value ?: reevaluate(false)
+ public suspend fun getValue(): T = value ?: reevaluate(null, false)
118
119
/** Returns the cached value of this property. */
120
public fun getCachedValue(): T? = value
0 commit comments